hello. Im currently having issues with the css coding on my website.
this is the code im entering to remove the bottom scroll bar/white area to the right for the mobile view of my website:
html, body {
max-width: 100% !important;
overflow-x: hidden !important;
}
It works, however it then adds a second bar to scroll vertically, Ive researched and people add this to fix it:
html, body {
overflow: visible;
}
when I add this code after the bottom scroll bar removal one it does nothing, like they are conflicting. Ive never done coding so maybe im missing something? thanks a lot.
[ad_2]
Remove the “overflow” and “max-width” lines – that’s a hack that some people (incorrectly) think is a fix – it isn’t. If you’re seeing a horizontal (what you call bottom) scroll bar, it means something on your page is too wide for the viewport. If you can share your url we can help fix the issue.