Okay
  Public Ticket #214855
Nectar Slider next/prev arrows fly-out - can remove?
Closed

Comments

  • David started the conversation

    Hi there, my client does not like the fly-out that appears when mousing over the next/prev arrows on the slider. The fly-out is a black rectangle that animates outward and indicates the slide the user is on and then the total amount of slides like this: "2/6". I would like to remove this. Could you please tell me how? The client only wants the arrows with no animation.

  •  9,001
    Tahir replied

    Hey David!

    Add this into the Custom CSS box located in your Salient Options panel :

    .swiper-container .slider-prev, .swiper-container .slider-next {
        display:none !important;
    }
    

    Cheers


    ThemeNectar Support Team 

  • David replied

    Thanks, but that got rid of the arrow navs completely. We only want to get rid of the animated fly-outs, but keep the static arrow navigation. Any ideas?

  •  9,001
    Tahir replied

    Hey Again!

    Add this instead:

    .swiper-container .slider-prev, .swiper-container .slider-next {
       width:50px !important;
    }
    
    
    .swiper-container .slider-next .slide-count,.swiper-container .slider-prev .slide-count{
        display:none;
    }
    

    Cheers


    ThemeNectar Support Team 

  • David replied

    Perfect! Thanks....

  • Colleen replied

    This is what I needed too. Thanks!

  • Ryhawk replied

    any way to do it for mobile as well?

  •  75
    Scott replied

    Hey there,

    Thanks for reaching in,

    Please send a link to your website so we can check this out for you,

    Regards

    Themenectar Support Team

  • Ryhawk replied

    www.landom.com.au/mspsv2 

    Have removed the arrows using the code below for the website but still there on mobile version

  •  75
    Scott replied

    Hey Ryhawk,

    Thanks for reaching in,

    Please try this CSS,

    @media only screen and (max-width: 690px) {
    .nectar-slider-wrap[data-overall_style="directional"] .swiper-container .slider-prev i {
        display:none!important;
    }
    }
    @media only screen and (max-width: 690px) {
    .nectar-slider-wrap[data-overall_style="directional"] .swiper-container .slider-next i {
        display:none!important;
    }
    }
    

    Hope this helps,

    Regards

    Themenectar Support Team