Hi – I used the code from this support topic (#post-289123) and was wondering how I would need to alter the code to get the background color to extend across the slide when it becomes active. I’d also like to change the opacity and color of the bar – but the code I’ve pulled of the forum doesn’t seem to change anything. Please advise. URL is below.
Thanks-
Anna
Hi annameis!
Thank you for using Enfold.
Please post the actual url of the thread or topic. A screenshot of what you’re trying to do will help.
Regards,
Ismael
Hey!
Thank you for the info.
Please use this on Quick CSS or custom.css:
#top .aviaccordion-preview-title {
padding: 50px;
}
#top .aviaccordion-preview {
height: 100%;
width: 100% !important;
}
Best regards,
Ismael
Hey!
Use this instead:
#top .aviaccordion-preview {
height: 30%;
width: 100% !important;
bottom: 0;
}
Best regards,
Ismael
how can i set the element on the page to max 490px width?
Hey!
to change the color of the titles use this in the Quick CSS:
#top .aviaccordion-title
{
color: #000000 !important;
opacity: 0.5;
}
Instead of “#000000” you can define any other color you want.
opacity: 0.5 = 50%
Best regards,
Andy
To set the element to max 490px width use this:
#top .aviaccordion
{
margin-left: auto;
margin-right: auto;
width: 490px;
}
Best regards,
Andy
Hey!
Please add following code to Quick CSS as well and adjust as needed
#top .aviaccordion-preview-title-wrap { background: rgba(255,0,0,0.5); }
255,0,0 is the RGB value of the color and 0.5 is opacity level
Cheers!
Yigit