Tagged: bullets, easy slider, remove
Hi,
Is it possible to remove the navigation arrows and bullets on the Easy Slider? Especially the bullets are rather intrusive when using more than three slides.
And also, how can I change the font color on the Easy Slider image title and caption text? Or is that coupled with the header color?
Thanks,
Ying-Fu
Hi,
Just add this on your custom.css
Remove bullets
.avia-slideshow-dots.avia-slideshow-controls {
display: none;
}
Remove arrows.
.avia-slideshow-arrows.avia-slideshow-controls {
display: none;
}
Caption Title color.
.avia-slideshow .avia-caption .avia-caption-title {
color: red;
}
Caption Content color.
.avia-caption-content {
color: blue;
}
Regards,
Ismael
You rock! Thanks!
The caption title bit doesn’t work, the caption content does.
Hey!
Try following code instead:
.avia-slideshow .avia-caption .avia-caption-title {
color: #ff0000 !important;
}
Best regards,
Peter