Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1328566

    And on slider setting no check boxes are checked for hiding on responsive.
    URL in private

    #1328614

    Hey jb84,

    It looks like it’s being hidden by the padding you have applying to the column, 200 pixels on each side. Please try copying the element, and hide the current one for mobile. Then remove the padding from the new element, and hide it for all screens, except mobile.

    Best regards,
    Rikard

    #1328769

    Thanks
    but unfortunatly, my slider is on a column and there is no setting in the column element to set ” hide it for all screens, except mobile.”

    #1328836

    Hi,

    Select to hide the current one on mobile, then add an ID to the copy. Then use CSS like this:

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

    Best regards,
    Rikard

    #1328837

    Hi,

    You could also change your layout. Instead of using a 1/1 element with a lot of padding, you can use empty 1/5 elements on both sides, and add your content in a 3/5 element instead.

    Best regards,
    Rikard

    #1329038

    THK Rikard
    With CSS all is perfect!

    #1329055

    Hi,

    Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1329062

    close

    #1329064

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Image slider not display on mobil’ is closed to new replies.