how to add background color to slide post title

Posted in: Newspaper
Post count: 16

i want to add bgcolor to post slide title in the home page of my website http://www.cyberscylla.com . right now its transparent.what is the custom css code to change the post title text color in the slide.

Post count: 22421

Hello pritiranjan,

You can use this cutom css to change the tile color:

.td_block_slide .td-slide-meta a, .td_block_slide .td-post-date{
color: red;
}

Or this one for the background color:

.td_block_slide .td-slide-meta a, .td_block_slide .td-post-date{
background-color: red;
}

You can add a bit of transparency to the background color if you want by using this palette from mozilla: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool

Thank you for your message.

Post count: 16

.td_block_slide .td-slide-meta a, .td_block_slide .td-post-date{
background-color: red;
}

this code also adding bgcolor to author name and date also.
i only want the bgcolor for the post title.

Post count: 22421

Hello,

If you want to change color only to the title without metadata, use this code instead:

.td_block_slide h3 a{
color:red!important
}

Thank you.

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