Menu

Support Area Forums Kerygma Menu

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://
  • Author
    Posts
  • #34081
    thadeus krehbiel
    Participant

    So the custom css you gave me worked, just one problem, is there a way to make it a bar above the logo and fixed? Otherwise in a screen with smaller width it puts it underneath the logo which looks bad.

    #34091
    Bill Robbins
    Moderator

    Good Morning Thadeus,

    I suspect you could do that. Give something like this a try:

    1. Go to the Appearance section in your WordPress dashboard and click on Customize.
    2. Look down for the advanced section and click on it. Then choose Custom CSS.
    3. In the box there, add this:
      
      nav#primary-site-navigation {
      	position: fixed;
      	top: 0;
      	margin: 0;
      	left: 0;
      	right: 0;
      	z-index: 20;
      	padding-left: 5vw;
      	padding-right: 5vw;
      }
      
      .admin-bar nav#primary-site-navigation {
      	top: 32px;
      }
      
      #logo {
      	margin-top: 50px;
      }
      
    4. Save your changes.

    Take care,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Menu’ is closed to new replies.