Hi,
For some reason you can thumb (horizontal) outside the viewport on mobile (iphone – safari)
Tried but wihout succes:
• Disabling plugins
• Removed all custom css
Link:
http://www.groeier.nl/
But none is working..
Any ideas?
Cheers Jasper
Hi herrbirk!
Try adding this to your custom CSS.
@media only screen and (max-width: 767px){
.responsive.html_header_sidebar #top {
position: relative;
}
}
Best regards,
Elliott
Hi Elliott,
The code didn’t work but the one below did.
#wrap_all { position: relative !important; }
body {
overflow:hidden;
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Thanks Jasper