STICKY NAVIGATION BAR (MENU) WHILE SCROLLING
CREATE STICKY NAVIGATION BAR (MENU) WHILE SCROLLING If your navigation bar is under your header and you want it to stick to the top of the window when you scroll past it then follow this tutorial. Add the following in your Style sheet /* Sticky Navigation Bar */ ]]></b:skin> sticknav { background: #ffffff; /* change as you need in your theme */ height: 30px; /* change as you need in your theme */ width: 100%; /* change as you need in your theme */ margin-right: 0px; /* change as you need in your theme */ left: 0px; position: relative; z-index: 9999; } .fixed { position:fixed; } Next, you’ll need to set up your navigation. go to your header file and wrap the header (the portion you need to sticky while scrolling ) with "sticknav " class some thing like this The final step is to add a...


