Menubar › fixed menubar
-
AuthorPost
-
Gunivortus GoosGuest
Hi,
a main complaint by the visitors of my site is the disappearing of the menubar at the top when scrolling down a page.
How can the menubar get fixed the way that it always stays visible at the top, nevertheless any downscrolling on a page?
If that isn’t possible, could it PLEASE be added to Menubar!Regards,
GunivortusandreaPlugin AuthorHi Gunivortus,
You could edit the CSS file in your menu template and add the declaration
position: fixed; to your menu’s div container.For instance if you are using the Superfish template with ssf-blue.css, you can replace the position declaration for the .ssf-blue-wrap selector (around line 133):
.ssf-blue-wrap {
…
position: relative;
position: fixed;
…
}Gunivortus GoosGuestThank you for your quick answer!
I tried your solution above – I indeed use the Superfish template with ssf-blue.css, but had to put that back to ‘relative’ because the way it is fixed then the menubar lies partially over the page titles and that position is fixed in the theme I use. (Samba theme).
-
AuthorPost