Removing Filter on Block Pictures

Posted in: Newsmag
Post count: 8

I’m not liking the filters on the photos in the block on the top row of my site. How can I go about removing it?

I will probably also need to know how to change the text color for that block alone since I assume the filter was put there to make the test readable.

Post count: 26

Hey,
For removing the filters try this Custom CSS in your Theme Panel

.td-module-thumb a:last-child:before{
background:transparent!important;
}

Changing the text color:
.td_module_wrap .meta-info .td-editor-date, .td_module_wrap .meta-info .td-module-title a, .td_module_wrap .meta-info .td-editor-date a{
color:#000000!important;
}
Adjust #000000 to your preference.

  • This reply was modified 11 years by Sean. Reason: Noticed original changed comment text. New one should work
Post count: 7909

Hi,

Thanks @Sean!

Please try the css code in Theme Panel > Custom Css: http://screencast.com/t/BFWR0XVZ
If you want to make this change only for that specific block please use this css to apply only on block 14-module mx1: http://screencast.com/t/Wjqmvyrwdjw

.td_block_14 .td_module_mx1 .td-module-thumb a:last-child::before{
background: transparent !important;
}
.td_block_14 .entry-title a, .td_block_14 .td-editor-date {
background-color: rgba(0, 0, 255, 0.28)!important;
color:white!important;
}

Hope this helps!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newsmag’ is closed to new topics and replies.