I need assistance achieving a horizontal scroll with the main content centered in a div, while having links that move left and right.
<div id="left">
Scrolls left
</div>
<div id="home">
Opens on this
</div>
<div id="right">
Scrolls right
</div>
Although I came across a discussion on stackoverflow about a similar topic, the solutions provided are not working for me. Moreover, the thread dates back to 2012, so I am hoping for more up-to-date methods to achieve this effect now. Horizontal scrolling layout LEFT/RIGHT: jQuery/CSS quiz
The desired effect I wish to accomplish is akin to
Any guidance on how to achieve this? http://jsfiddle.net/gaby/en9sw/15/
EDIT:
In essence, I want the website to initially display #home and shift to #left when a specific link is clicked (thus scrolling left).