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.
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.
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
Hi Ismael,
That was indeed the problem. I fixed it, and now it works fine.
Thanks for the help!
Best regards,
Sjaak
