I have a sidenav made up of a few images. I want these images to be links to sections on the same page - anchor links. However, I can't seem to get it to work.
Here's my HTML:
<div id="nav2"><a href="#powerlifting"><img src="img/icon1.png" alt=""></a></div>
<a name="powerlifting"></a>
<div id="powerlifting">
<div class="header1"><h1>POWERLIFTING</h1></div>
</div>
Here's the styling on #nav2:
#nav2 {
position: fixed;
top: 14.285vh;
cursor: pointer;
}
Thanks in advance! :-)