• Resolved philiplp

    (@philiplp)


    Hey,

    Love the theme and am having fun playing with it.

    I would like to center the menu beneath the header image, but I can’t manage to do it, everything I alter I keep messing up. I don’t want to get rid of the search function from there, however.

    Please let me know how I can go about doing this!

Viewing 1 replies (of 1 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi philiplp,

    Glad you like it!

    Add the following CSS code in a custom CSS plugin or in a child theme:

    .navigation-inner { position: relative; }
    
    .main-menu { text-align: center; }
    
    .main-menu > li {
    	display: inline-block;
    	float: none;
    }
    
    .search-toggle {
    	float: none;
    	position: absolute;
    	top: 0;
    	right: 0;
    }

    That should center the menu without pushing the search toggle down.

    – Anders

Viewing 1 replies (of 1 total)
  • The topic ‘Center Main Menu’ is closed to new replies.