I'm struggling to achieve horizontal scrolling only in my provided example link HERE. It seems like a simple fix should be adding
{overflow-x:auto; and overflow-y:hidden;}
in the CSS, but I've tried that and it's not giving me the desired result. I want the content to scroll horizontally when more features and links are added to the HTML file without dropping down like it currently does in the jsfiddle. Here is a snippet of my code:
CSS:
body {
font-family: "marcellus sc";
}
// Rest of CSS code here...
HTML:
<div class="links_wrapper">
// HTML code here...
</div>
I prefer to solve this issue using CSS rather than relying on JavaScript as a last resort. Can anyone point out what I might be doing wrong or missing? Your help is greatly appreciated. Thank you!