Probelm with iphone visualization

Dear all,
why my site on the iPhone only displays the header?


best regards

Hi Barbara,

You have this code added on the site which is stopping the scroll on iPhone:

html, body {
    overflow: hidden !important;
    height: 100% !important;
    background: none;
}

Please remove overflow: hidden !important; in the code so that the content on iPhone or update the code:

html, body {
    height: 100% !important;
    background: none;
}

@media (min-width: 768px) {
    html, body {
        overflow: hidden !important;
    }
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.