Hi Everyone,
I’m trying to use the code found here for the arrows on the Content Slider – https://kriesi.at/support/topic/content-slider-arrows/
However, it seems to show the letters for the word “Previous” and “Next” behind the arrows?
And it seems to disappear on Mobile.
How can I fix that?
I put the page I’m working on in the private section
Hey MikeTandySwag,
Thank you for the inquiry.
You can add this css code to remove the text behind the arrow.
#top #wrap_all .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-controls a {
text-indent: 9999px;
}
Best regards,
Ismael
Thanks! How can I remove the boxes on this page?
Also how can I make it look good on mobile?
Hi,
Please try this CSS as well:
#top .av-control-minimal-dark .avia-slideshow-arrows a::before {
border-color: transparent;
}
Best regards,
Rikard
Thanks! And then how do I make them appear correctly on Mobile?
Hi,
The arrows seem to be displaying as they should. How would you like the arrows to appear on mobile view?
Please note that the css code above should remove the border both on desktop and mobile view. If you want to apply it on desktop view only, please use this css code.
@media only screen and (min-width: 768px) {
/* Add your Desktop Styles here */
#top .av-control-minimal-dark .avia-slideshow-arrows a:before {
border-color: transparent;
}
}
Best regards,
Ismael