Blog Menu Scroll
-
Is there a way to make it so that when you scroll down the menu follows. Like the following site?: http://www.rehabonlinemag.com/
The blog I need help with is: (visible only to logged in users)
-
Hi there, give the following a try. I’ve use a Media Query to limit this to 750px and wider screens/windows since at 749px and narrower the touch device menu activates and this change would cause issues with that.
@media screen and (min-width: 750px) { .menu-primary { position: fixed; z-index: 1000; width: 100%; } .logged-in .masthead { margin-top: 50px; } }
- The topic ‘Blog Menu Scroll’ is closed to new replies.