I am using parallax scrolling on my website, but it seems to be preventing my HTML anchors from working. Specifically, they DO work if you click the buttons sequentially (top to bottom, or lower layer to higher layer), but once you are at the bottom of the page (topmost layer), it will not return to a previous layer.
The exception is the bottom layer, for which I use the standard "#". But no others work. I am using the HTML5 standard of linking to specific elements by id, rather than the depreciated "name" tag.
Anchor:
<a href="#maddie">
<div id="maddiebutton" class="tooltip">
<span class="tooltiptext">Maddie</span>
</div>
</a>
Target:
<div id="maddie"></div>
Website: http://www.untilthemonsters.com/characters.html
The "buttons" I'm referring to, with the anchor links, are the colored circles on the right of the page.
The button code is below the comment "Character Buttons".
The page sections (divs) to which the buttons are linked are commented by name (e.g. "Elan", "Maddie", etc.)
(Edit: Added the code, but the problem seems to have been with the CSS, specifically that the targeted divs had a fixed or "sticky" position).