I am trying to make the header menu ontop of the tesseract theme (http://tyler.com/ ) a fixed position, so that if you scroll down one can access all menu elements from any postion on the site.
I have tried a few things and always added position:fixed;
to a few css classes of the theme, but nothing happened.
I would be glad, if you could help me out with this issue. Thanks in advance
You could try:
This should fix your menu to the top and it will follow you on scrolling.
Edit this code from
position: relative
toposition: fixed
Now to avoid the top content getting hidden:
Output
remove
position: relative;
add
Add position fixed to a div not in every element
check this fiddle
HTML
CSS