Remove image on content block

Posted in: Newspaper
Post count: 33

Hi,
I work on a very academic website where there’s no place for images.. what a pity. anyway !
I’d like to know if it’s possible to remove images on blocks with a simple CSS, something like :

.td_block_1 .entry-thumb{
none;

I don’t code, i’m sorry 😉

With this code, there will be no more grey image on the homepage : http://www.laremedias.com

Thks for your reponse !
jack

Post count: 22421

Hello,
You can remove all your images from the homepage with this custom css:
.home .td-module-thumb{
display:none!important;
}

Thank you!

Post count: 33

great, thank you for your response !
And if I want to remove images block by block, is there a specific custom css ?
thk you so much

Post count: 22421

Hello,
There is a specific code for every block. You can use the block specific class like so:
.home .td_block_1 .td-module-thumb{
display:none!important;
}

Every block has a td_block_x class where x is the block number.
I hope this helps.
Thank you!

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