I'm trying to create a navbar link that will take me directly to a specific section of a page, but I'm having trouble getting it to work.
Here's what I've tried:
<a href="home#id" class="nav-link text on-hover"></a>
Where "home" is the name of my page and "id" is the ID of the section I want to target. But for some reason, it's not working as expected.
If I simplify it to just this:
<a href="home" class="nav-link text on-hover"></a>
The link takes me to the page, but not to the specific section with the ID.
I've searched for a solution multiple times, but I haven't been able to find anything yet. Can anyone help? Thank you!