Hi Jordan, can you send a link to a page that it’s on so I can take a look at the styles loading?
The classes used with the plugin for CSS are not very specific, with the intent that it can match your site a bit. Still, it’s hard to make a default that works for every site. The code that you can change:
.flexslider-caption-inner p {}
.flexslider-caption-inner h3 {}
.flexslider a {}
With those, set color: your_color
, using the color that you want the description, title, or links to be. You may need to make it more specific to get your colors to be used. By that I mean if this is in a sidebar, you could see what the sidebar class or ID is and try something like:
#left-sidebar .widget .flexslider-caption-inner p { color: black; }
I hope this helps!
Hi David,
Thanks so much for taking the time to help me. I edited the CSS as suggested but am still not seeing the title.
Here is a link to my page: http://www.beertimewithwagner.com/
Please let me know if you have any other suggestions. Thanks so much!
The site looks very clean 😊
Give this a go:
.banner-container .flexslider-caption-inner h3, .banner-container .flexslider-caption-inner p { color: #000000; }
That is more specific than the other code, and will show up.
What that says basically is “look for the h3 and p tags in the flexslider-caption-inner box (the area that is white), and that is in the banner-container box (the area on your site that has the whole slider in it)”. Since my plugin just says “look for the h3 and p tags in the flexslider-caption-inner box”, the new code, which is more specific, will be used.