Change color of Blocks

Posted in: Newspaper
Post count: 91

Hello, i want to change color of post title for each block,

How can i do this.

my website: livecoins . com . br

You will see 3 blocks, Blockchain, bitcoin, altcoins. So, i want every title for blockchain color 1, every title for bitcoin ,color 2, every title for altcoins, color 3

Thanks

Post count: 22421

Hello,

This can only be done with custom css and an extra class added to each of the blocks. They cannot be targeted individually otherwise. https://www.screencast.com/t/QuCG7j1BXQ

.mycustomclass .td_module_mx2 .item-details .td-module-title a{
color:red;
}

You can replace the .mycustomclass with the particualr class you add to each of the 3 blocks and create 3 instances of the code with the different colors you want for the block like for example:

.mycustomclass_1 .td_module_mx2 .item-details .td-module-title a{
color:red;
}
.mycustomclass_2 .td_module_mx2 .item-details .td-module-title a{
color:green;
}
.mycustomclass_3 .td_module_mx2 .item-details .td-module-title a{
color:blue;
}

You can place the code in the theme panel-> custom code section.

Thanks.

Post count: 91

Hello, Bogdan B.

It Works .

Super Thank you 😀

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