Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #293536

    Hello,

    Can I hide the full screen slider “easyslider” from the home page on mobile and tablets via the style.css file? if so what code do I insert!
    Please!

    – Is it possible to have a different slider on mobile, tablet and desktop. If I make a request here: https://kriesi.at/support/topic/enfold-feature-requests/ . Or this feature is not feasible !?

    Thanks!

    #293541

    Hey!

    It’s possible, enable this, create two sliders and set a different class to each one (lets say mobile_slider and desktop_slider). Then add something like this to the Quick CSS:

    .mobile_slider{
    display: none;
    }
    @media only screen and (max-width: 767px) {
    .mobile_slider{
    display: block;
    }
    .desktop_slider{
    display: none;
    }
    }

    Regards,
    Josue

    #293585

    Thank you Josue !
    it works but the “next section” button no longer works on the desktop

    #293924

    Hi!

    Can you post a link to your website please which enables us to investigate the css code of the “next section” button?

    Regards,
    Peter

    #294012
    This reply has been marked as private.
    #294094

    Hey!

    Change the order of the elements this way:

    1. mobile-slider
    2. desktop-slider
    3. next-section

    Best regards,
    Josue

    #294192

    Hey!

    Yes it works! Thank you

    #294193

    You are welcome, always glad to help :)

    Regards,
    Josue

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