I’m sure it’s just a line of code to drop somewhere…could you please tell me how to disable to image overlay from showing up on linked slides in the full width easy slider (NOT layer slider)? I’d like to keep it on the other linked images on site, just not the slides.
Also…there’s a funky symbol showing up in ‘previous’ arrow….an ‘s’ or backwards ‘e’ maybe? I can’t seem to find anywhere to remove it. Please help!
Hi,
You can use this on your custom.css or Quick CSS
#full_slider_1 .image-overlay.overlay-type-extern, #full_slider_1 .image-overlay-inside {
display: none !important;
}
.avia-slideshow-arrows.avia-slideshow-controls {
display: none;
}
Regards,
Ismael
The rule for the overlay worked like a charm. Thanks!
But I can’t do that for the arrows…I need them because of this page (http://abqdowns.com/live-racing-calendar/). I just need that odd symbol to go away on the home page…or even worst case, remove the arrows only on the home page. Is there an if_home, or is_home, sort of command to use with the rule above?
Hi!
Yes – try:
.home .avia-slideshow-arrows.avia-slideshow-controls {
display: none;
}
Regards,
Peter
Beautiful. Thanks!