Hello,
I am wondering how I change the font color for the caption titles and caption text in a fullscreen slider. I want to make the color of the text the same as my background color (#e6e8d8). My site is legalelevation.com. Any help is much appreciated!
Hey Ryan!
Thank you for using Enfold.
You can change the caption title with this:
#top #wrap_all .main_color h2.avia-caption-title {
color: red;
}
And the caption content using this:
.avia-caption-content {
color: blue;
}
Cheers!
Ismael
Thanks, Ismael.
Where do I enter that code? Thank you!
Hi!
You can add the code on Enfold > General Styling > Quick CSS field or the custom.css file if you have access via FTP.
Regards,
Ismael
This is very helpful. Is there a way to make it a custom color such as e6e8d8? Thank you!
Hi!
You can use hex value of the color as following
.avia-caption-content {
color: #e6e8d8;
}
Best regards,
Yigit
It all worked great. Thank you!