X-Pro some pages had double scroll bars on the right hand side, used the following fix:
/* stops double scroll bar */
body {
overflow: initial;
}
The problem only happened with Edge browser, However this fix introduced another problem - the mobile site now scrolls sideways on safari (iphone) and chrome (android). Please help.
URL is live and in secure note
UPDATE: added the following to see if the issue is fixed.:
overflow: hidden;
overflow-x: hidden;
This seems to have fixed this issue. Is this the optimal way of doing this?
