0
I have a problem that when I open a link that directs to an anchor from another page and is hidden by the Fixer header.
I have a menu on my page:
Inside Index.html I have this menu
<a href="produtos.html#produto1">Produto 1</a>
<a href="produtos.html#produto2">Produto 2</a>
<a href="produtos.html#produto3">Produto 3</a>
However, when clicking and opening, anchors are hidden, because I have a header with position:fixed
.
http://jsfiddle.net/thallysondias/q4hp3euv/ Jsfiddle -showing how the div is hidden
How do I be able, when clicking to open, to automatically scroll down 100px?
This is my page: http://www.omnibees.com/novo3/clientes.html#case-Studies If you use the top menus to open a new page in a particular section, see q the section title is hidden.
the anchor works, my problem is that I need to give a scroll down, so the content does not get hidden by the menu
– Thallyson Dias