Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1490506

    The layer slider is very small on mobile. How can I set a minimum height for the layer slider so it’s still visible on mobile?
    I’ve added a link to the relevant page under Private Content so you can see the problem.

    #1490527

    Hey svweb,

    Thank you for the inquiry.

    Did you add this css code? It shifts the main container upward, causing it to overlap with the header.

    #main {
        margin-top: -150px!important;
    }
    

    This is how it should look normally without the css modification.

    Screenshot-2025-10-23-at-1-37-59-PM

    Try to replace it with this css code:

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      #main {
          margin-top: -150px!important;
      }
    }
    

    Best regards,
    Ismael

    #1490543

    Hi Ismael,

    That was indeed the problem. I fixed it, and now it works fine.
    Thanks for the help!

    Best regards,
    Sjaak

    #1490561

    Hi,

    Great! Glad to know this has been resolved. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘layerslider very small on mobile’ is closed to new replies.