I'm working on a horizontally scrolling website, and I have 4 sections. Each section is ID'd as follows:
<section id="section1">
<section id="section2">
<section id="section3">
<section id="section4">
When you load the website, you are shown 'Section 1', and the text is hyperlinked to push you to #section2 when clicked. This works fine until it gets to the third section, when all of the a sudden the hyperlink that is suppose to push the user to #section4, pushes back to #section1.
I'm under the impression that it has something to do with container and section width, but I can't figure out the issue. I originally only had 3 sections, and could not get to section 3 unless I added section 4.
Any help is appreciated, thank you