You need to add a custom ID to the section you want to slide to. Then create a link with an icon inside and add a scroll class to it. Ofcourse the href must link to the ID you created. Example: <a href="#work" class="scroll"><i class="icon-home"></i></a> This will create an home icon that can be clicked and will go to the ID = work If you do not know hwo to do this please watch or read some tutorials, like this: https://stackoverflow.com/questions/24739126/scroll-to-a-specific-element-using-html The scroll class adds the smooth scroll effect.
Comments
You have to add a custom class to the link, the class is: scroll
Example:
<a href="#work" class="scroll">WORK</a>
thanks
Then create a link with an icon inside and add a scroll class to it. Ofcourse the href must link to the ID you created.
Example:
<a href="#work" class="scroll"><i class="icon-home"></i></a>
This will create an home icon that can be clicked and will go to the ID = work
If you do not know hwo to do this please watch or read some tutorials, like this:
https://stackoverflow.com/questions/24739126/scroll-to-a-specific-element-using-html
The scroll class adds the smooth scroll effect.