Hi,
I’ve tried using the following quick CSS code to change the colour of the Avia slider caption overlay.
.avia-caption-title{
background:#B0998F !important;
color:white !important;
}
while this works & changes the caption overlay colour for the first line of text (title), the next line of text underneath still has the default overlay colour (dark grey)
Any suggestions? Thanks
Regards
Melanie
Hi Haycreations;
The “first line” is a <h2> the “second line” is <p>
try to add this line too :
.avia-caption-content{}
Those two lines depending of these lines,
you can try to adjust for your use :
.caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title,
.avia-caption .avia-caption-content p, .avia-caption .avia-caption-title
{
background: #000;
filter: alpha(opacity = 80);
background: rgba(0, 0, 0, 0.5);
display:inline-block;
margin:0 0 1px 0;
padding:10px 15px;
}
Thanks for the code – it’s all working now :)