Hello, I need change the font color of the home page top slider of the Shop Demo.
I installed the demo – which is terrific. I’d never gotten to all that stuff on my own~
Did a screen shot but don’t see anyplace to upload it.
I need a light color font for the slider images – can you please give me the code to change the font color?
thanks
Hey Intell!
Add this to your custom CSS.
.slideshow_align_caption .avia-caption-title {
color: white !important;
}
Regards,
Elliott
Oops – what if I need a different color font color for different slides??? Ouch!!
Thanks for this! But is there a slide ID or something that I can add to this code you so kindly gave me so I can do different color fonts for different slides?? That would be perfection!
Thanks a bunch!!!
Hi!
If you inspect the slider you can see that each slide is inside of an li which gets a custom class, like the first slide gets slide-1, so you could try:
.slide-1 .slideshow_align_caption .avia-caption-title {
color: white !important;
}
if you only want to target the first one for example.
Regards,
Rikard
terrific!! Thanks so much!! I will try.