Is there a way to enable vertical scrolling while keeping horizontal scrolling turned off?
I've attempted using scrolling="no", but that disables both vertical and horizontal scrolling.
I've also experimented with CSS:
#myiframe{
overflow-x:hidden;
overflow-y:auto;
}
However, I am still seeing the horizontal scroll bar in Chrome. Other browsers seem to be working fine.
Any guidance on how to achieve this is greatly appreciated.