Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #802875

    Hi,
    Our fullwidth slider displays poorly on mobile when we add a button. Please find a link to the page in question below. Hoping you can assist.

    #803010

    Hey Robyone925,

    The slider has very little space on mobile devices and there’s not enough space for your text unfortunately. Maybe you could add a color section element under it and only show that on mobile devices? You can hide it for all other screen sizes if you give it an ID in the element option then use CSS like this in Quick CSS:

    @media only screen and (min-width: 768px) {
    #your-id {
      display:none;
    }
    }

    If you want to go for that option then we will give you CSS to hide the text in your slider as well.

    Best regards,
    Rikard

    #804286

    Hi Rikard,

    Thank you for your reply, yes that would be great, can you please provide instructions on how to implement the above.

    Thank you,

    #804413

    Hi,

    Did you follow the first instructions I wrote? If not then please try to do so, then you can hide the slider for mobile using this in Quick CSS:

    @media only screen and (max-width: 767px) {
    .home #full_slider_1 {
      display:none !important;
    }
    }

    Best regards,
    Rikard

    #804778

    Hi sorry can you please provide step by step instructions as I have tried the above and am not able to get it to work. Thank you

    #804942

    Hi,

    You need to add the custom CSS code at Enfold Theme Options > General Styling > Quick CSS

    Best regards,
    John Torvik

    #805419

    Hi,

    Thank you but this does not work because the slider I want to hide is not on the home page it is on the page below. Can you please provide the correct ID for the page.

    #805930

    Hi,

    Please try this instead:

    @media only screen and (max-width: 767px) {
    .page-id-8446 #full_slider_1 {
      display:none !important;
    }
    }

    Best regards,
    Rikard

    #807184

    Thank you Rikard, I’ve been able to resolve this issue using the code above.

    #807198

    Hi,

    We’re glad that Rikard was able to provide the solution.

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/

    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/

    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you.

    Thank you for using Enfold.

    Sarah

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Fullwidth slider – mobile display issue’ is closed to new replies.