Hello fellow programmers, I am new at programming in HTML5/CSS/Javascript and I will try to make my question as clear as possible.
I've used scroll magic on my website to have the navigation links scroll to the side as you scroll down. Here is the link to the page. Nevertheless, I've realized that when I do so, I can no longer click on the images below when the nav links and my image elements (with link area on them) are at the same lateral level: the Scrollmagic link movement blocks other image links. I would like to be able to still click on both links throughout the whole parallax scrolling, even when the navigation links and the thumbnail link are at the same level.
I've attempted to: change the z value for both elements, change the .site-nav and page-nav sizes and spent many hours on it trying to edit bits and pieces to see if where the problem can be solved, but all to no avail. Here are parts of the css that I feel is where the answer belongs but I might be wrong.
CSS for parallaxed nav links:
.site-nav {
display: block;
position: fixed;
width: 100;
text-align: center;}
CSS for image thumbnail links (with link to HR images):
.page-nav {
display: block;
width: 100%;
text-align: center;
z-index: 10;
margin-top: 300px;
}
So if this sound like an easy answer for you, this would really help me out greatly. Hopefully my post is relevant and makes sense! Let me know if anything needs clarification.