Fixed Inline Navigation

Hi,

I found this old forum thread https://theme.co/apex/forum/t/cornerstone-inline-navigation-fixed/22832
But the code doesnt seem to work on my end.

I have an inline navigation just below the main menu header. Would like it to stay there fixed just like the main menu. The page is, https://www.globalmusicgarden.com/the-global-battle-of-the-bands/

Thanks
Rachanee

Hi Rachanee,

Thanks for writing in!

To make it fix, you may do the following.

  1. Add your menu in a separate section. This section should be on the very top of the page.

2 ) Add a unique id to that section.

  1. Add this in Cornerstone > CSS
@media(min-width:979px) {
#mysection {
   position:fixed;
   top:70px; 
   width:100%;
   z-index:999;
}
}
  1. Set your Navbar Position to Fixed Top

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.