Link at the end of the page

Hello,

I have a pricing table at the beginning of the page and i would link the button (booking) with a Contact form i have at the end of the page. 

How can i do this?


Thanks for the help

Comments

  • Hi,
    First, add an id to any element on your contact form.
    then use this id in the button link.
    For example, i add id="form" and then edit the button, set <a href="#form"... then just save and when you click you will have a scroll to this element. To have a smooth scroll set this page as one page in edit.
  • Thanks for the help, but still not working for me. 

    Where i have to set this (<a href="#form") exactly? 

    And what would be the exatly way? 

    <a href="#form">

    this?
  • This is a normal link, it looks like this.
    <a href="#form">Link name</a>

    The form has to have an id set to form for example:
    <form id="form">

    Then the link knows where to scroll to.
Sign In or Register to comment.