One page smooth scroll only works on section anchors, not set (html) anchors in body

http://ernestohome.loan/borrowers/

If you click the "one page" links at the top they all smooth scroll EXCEPT "About M" to the location. The anchors that are set in the section like here.
http://nimb.ws/SMm9oO
work perfectly.

But, MINE just coded into a column like this:
http://nimb.ws/XwxcAl
do not smooth scroll. As you can see I added what I thought would be the right class to make it work, but alas, it does not.

Do you have a solution to make my html anchors behave on click like the section ones?

Thanks for your help.

Comments

  • Hi,
    This is not the correct way to do this, if the menu has href="#aboutme" it has to scroll to the element in the HTML with the id="aboutme"
    So please add an ID="aboutme" to any HTML element and the page will scroll to this element. Also remove the <a name="aboutme"....... it could create conflicts.

    You need to add the class="scroll" only to links outside the menu. The scroll class is used only to switch on the smooth scroll, but it has to be set on the link(start) not on the element (finish)
    thanks
  • I'm so embarrassed. Thank you so much for your guidance. Did the trick!
Sign In or Register to comment.