How to make a navbar that will take me to specific section of the page?

Here is my link. https://codepen.io/yongyili921/pen/QmjBLV When clicking on the navbar, it did not take me to specific section of the page. Please help.

Seems to be working for me :+1:

i see what you have done there, you need an id=“bottom” in your
<h3 class="text-primary text-center">contact</h3> tag

so that the link in the top will send you there with href="#bottom" in your top links bar.

Hi! Thanks for the help. I just did what you said, but it still doesn’t work properly.

Hi. It’s because you have this bit in your navbar still

  <div id="top"></div>
<div id="middle"></div>
   <div id="bottom"></div>

Delete that and it works as expected :slight_smile:

1 Like

That’s so cool. It works. Thanks so much.