Okay
  Public Ticket #3609244
Nectar Slider - Disable Slide Count
Closed

Comments

  •  1
    Leo started the conversation

    I would like to disable the slide count function when you hover on the slider navigation arrows. I followed a previously submitted ticket from another user about this but it only removed the slide numbers, the expanding animation on the transparent black background was still there. Thank you!

    Attached files:  Screen Shot 2024-03-18 at 10.04.08.png

  •  2,723
    Andrew replied

    Hi Leo,

    Thank you for getting in touch.

    Could you please share your site URL so we can look into this for you?

    We look forward to your reply.

    Thanks,

  •   Leo replied privately
  •  2,723
    Andrew replied

    Hi Leo,

    Thank you for getting back to us.

    Try changing the next/previous slider settings in the nectar slider settings shown in this screenshot.

    3726386137.png

    Try this and let us know how it goes.

    Kind regards,

  •  1
    Leo replied

    Hi Andrew, 

    We'd just like the standard navigation arrows and not have any additional hover functions like the slide counter or the slide preview. Thank you!

  •  8,405
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .swiper-container .slider-prev:hover, .swiper-container .slider-next:hover {
        width: 50px !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Leo replied

    Hi Tahir,

    Thank you for this. It's getting close to what we need! One small thing, there is still an animation when I move the cursor out of the navigation arrow. Is there a way to remove it as well? Thank you!

    Attached files:  slideshow arrow hover out.mp4

  •  8,405
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

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

    Thanks


    ThemeNectar Support Team 

  •  1
    Leo replied

    Hi Tahir, thank you, that's perfect! 

    For reference if anyone needs it,  here is the code:

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