In my main CSS, I included a vertical scrollbar for a text box because the text is very long. It works and looks great...
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
...except now I've reached my media queries.
I don't know about you, but using a scrollbar on a smartphone is a PITA. I need the entirety of the text to appear without a scrollbar, not just for the scrollbar to disappear. I've tried all CSS options for "overflow" and "overflow-y" to no avail.
I'm fairly certain I've exhausted all HTML and CSS options, is there anything else I can try?