Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #572461

    Hello,

    I am using a full width easy slider for a page introduction with text in the image.

    However once the screen width hits ~740px the slider becomes unreadable and unproportional to the screen.

    I want the slider there on desktop versions, however I want it to disappear and have a different slider take its place with a different picture that is mobile friendly once it hits the ~740px width.

    #572500

    Hey shefferz!

    Add this to a codeblock element in the page.

    <style type = "text/css">
    @media screen (max-width: 740px) {
    #full_slider_1 { display: none  !important; }
    #full_slider_2 { display: block !important; }
    }
    #full_slider_1 { display: block; }
    #full_slider_2 { display: none; }
    </style>
    

    Best regards,
    Elliott

    • This reply was modified 8 years, 2 months ago by Elliott.
    #572740

    Hi Elliot thanks for the response, however the code isn’t working. Is there a specific place i need to put the code block in the page?

    #572742

    Also is there a way I can control this from my stylesheet instead of hard coding the page?

    #573219

    Hi!

    Please refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    Regards,
    Yigit

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