How to change title background

Posted in: Newspaper
Post count: 4

Hi,

I am not able to change background color of title of the main four images. Please help, how to to it?

Check here: color

Post count: 21065

Hello!

For changing title background color you need to write a css custom code.
You can easily add this code if you access Newspaper -> Theme panel -> Custom code -> Custom CSS:
.tdm_block_image_info_box.td-image-info-box-style-2 .tdm-title-md {
padding: 12px 100px 20px 40px;
background-color: #87aa6a;
transition: background-color 0.3s ease;
}

For background-color you can choose whatever color you need for the title background color.

Thank you!

Post count: 4

Hi,

thanks you, it is working. One more thing, I want to change background of the same element on mouse hover. I tried with :hover statement with same class name but it is not working.

Post count: 21065

Hello!

For changing the hover title background color you need to write a css custom code.
You can easily add this code if you access Newspaper -> Theme panel -> Custom code -> Custom CSS:
.tdm_block_image_info_box.td-image-info-box-style-2 .tdm-image-wrap:hover .tdm-title-md {
background-color: red;
}

For background-color you can choose whatever color you need for the hover title background color.

Thank you!

  • This reply was modified 5 years by Bettina.
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.