Page overflow issue in mobile view
1
Page overflow issue in mobile view
If the mobile view has an overflow issue, try to solve it with the overflow:hidden css
CSS:
body
{
overflow: hidden;
}
If overflow is not working, check if meta tag of header is correct or not. Replace the metatag with the following:
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
Hope it worked!