Reply To: How to move the primary navigation menu?

Homepage Community Forums Aspire Theme Support How to move the primary navigation menu? Reply To: How to move the primary navigation menu?

#23698
SavvyPro
Customer

    Okay, I got it to work using the following CSS:

    .nav-primary {
      position:fixed;
      background: #5271ff;
      top:0;
      right:0;
      left:0;
      z-index:99;
    }

    I then had to move the header down a bit so the menu was not overlapping with it using the following CSS:

    .site-header{
    	margin-top: 50px;
    }

    Now, I need to get the mobile responsive menu to display for the new position.

    I will try and research how to do that and if I cannot find anything, I will ask here.

    Thanks Wes