Hi there,
Is there a way to move the previous/next buttons that appear with blog / product sliders outside of their container area, so that they don’t overlay the posts/products, but rather sit further left and right respectively, and are easier to see?
Thanks!
Hi,
Can you post the link to the page in question please? i’m not sure what buttons you referring to.
Regards,
Josue
Hey!
Try adding this code to the Quick CSS:
#top .avia-slideshow-arrows a.prev-slide {
left: -80px;
}
#top .avia-slideshow-arrows a.next-slide {
right: -80px;
}
Cheers!
Josue
Hi
Thanks for the reply!
I tried a similar approach but the arrows are just hidden by the bounds of the container when moved further left and right.
cheers!
You are welcome, glad we could help :)
Regards,
Josue
Sorry i forgot something, add this too:
#av_section_3 .avia-content-slider {
overflow: visible;
}
Regards,
Josue
Ah, perfect. Thanks so much!