Hi
how can I add some background (faded) so that the white title (main box) is more in evidence?
Screen: https://snag.gy/sMNu5b.jpg
My site: interfans.org
Thank you
Hello interfans,
As a quick example, you should try using the code below and place it in Theme panel -> Custom CSS area.
The code is here ->
.td-module-title{
background-color:green;
}
The result is here -> https://www.screencast.com/t/6b6kIACdlh
If you need a deep customize, notice that you should do it yourself, using the Inspector browser from here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!
I have difficulties to identify only the class for the title of only the BIG BOX.
The change you suggested will change the background of all the titles, while I need only the one in this picture https://snag.gy/sMNu5b.jpg
Please help
Hello interfans,
You should target only that Block from this page. I suggest you to use the Inspector Browser to create your own custom CSS code from here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!
Hi,
Try it like this, the code will apply only to the titles in the slide element
.td_block_slide .entry-title {
background-color: ;
}
Use any color you want, use a generator for example if you want
– https://www.css3maker.com/css-3-rgba.html
Or even set a shadow for the text
– https://html-css-js.com/css/generator/text-shadow/
Thanks