Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1434934

    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

    #1434953

    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

    #1435238

    Thanks! How can I remove the boxes on this page?

    Also how can I make it look good on mobile?

    #1435296

    Hi,

    Please try this CSS as well:

    #top .av-control-minimal-dark .avia-slideshow-arrows a::before {
      border-color: transparent;
    }

    Best regards,
    Rikard

    #1435371

    Thanks! And then how do I make them appear correctly on Mobile?

    #1435402

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.