Greetings, my name is Kasper!
I am currently working on incorporating waypoints into the sidebar of my portfolio website, a feature I just recently discovered.
However, I seem to be struggling with getting it right. Here is a snippet of my code:
<!-- /#sidebar-wrapper ----------------------------------------------------------------------->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<div class="menu-links scroll-me">
<li class="sidebar-brand">
<div href="#">
<a href="#header">
<img class="ImageFixsTyle" src="assets/img/logsmall.png" alt="SbnLogo" /></a>
</div>
</li>
<hr />
<li><a href="#about"><i class="fa fa-archive fa-2x"></i></a></li>
<hr />
<li><a href="#clients"><i class="fa fa-globe fa-spin fa-2x"></i></a></li>
<hr />
<li><a href="#NewsLetter"><i class="fa fa-user-plus fa-2x"></i></a></li>
<hr />
<li><a href="#contact"><i class="fa fa-mars-stroke fa-2x"></i></a></li>
<hr />
<li><a href="#contactme"><i class="fa fa-envelope fa-2x"></i></a></li>
<hr />
</div>
</ul>
</div>
<!-- /#sidebar-wrapper ----------------------------------------------------------------------->
You can see this code in action at:
My goal is to highlight the current menu point whenever I navigate to it, but I have been unable to find a solution that fits my specific issue.
I would greatly appreciate any assistance as this problem is causing me quite a bit of stress! Thank you for taking the time to read this.
Have a wonderful day/evening!