How to change color tiles on some big grides

Posted in: Newspaper
Post count: 555

I like to have a css code to change the titles color from white to #dddddd on “Big Gride 3 and block 14,

And a css code to hide the tile on some gride and blocks as well…thanks in advance

  • This topic was modified 10 years by Steven.
  • This topic was modified 10 years by Steven.
Post count: 22421

Hello Steven,

For the colors use the folowing CSS:

.td_block_big_grid_3 .td-big-grid-post .entry-title a{
color:#ddd;
}

.td_block_14 .td_module_mx1 .entry-title a {
color: #ddd!important;
}

If you do not want the title you can apply the display:none property to the code. like so:

.td_block_big_grid_3 .td-big-grid-post .entry-title a{
color:#ddd;
display:none;
}

http://screencast.com/t/RNDTxS5ulGb

I hope this helps,
Thank you.

Post count: 555

Thanks again, this will be a nice feature to add to the theme panel…to remove titles from grids and blocks if you don’t want them,then using a lot of css code to make the theme more heavy…

Post count: 22421

Glad to see it works. We are constantly working on multiple updates to the theme. Adding further customization is always a goal of ours. We hope, in a future update, to come up with more and more options.
Thank you.

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.