[Resolved] Split template

Home Forums Support [Resolved] Split template

Home Forums Support Split template

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #762774
    Paul

    Hi, just playing around with the Split template and wondered if it’s possible to bring the left & right menus closer to the logo, rather than float right and left?

    Similar to this.. https://femininethemesdemo.com/themes/maggie/

    Thanks

    #762835
    David
    Staff
    Customer Support

    Hi there,

    that Site uses two menus placed either side of the logo. Not so simple with Split to position them like so. But what you could do is to set a max width to the navigation which would bring the menus in closer, so go to Customizer > Additional CSS and look for:

    .main-navigation:not(.slideout-navigation):not(.mobile-header-navigation) .main-nav > ul {
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex; 
    }

    Update it to this:

    .main-navigation:not(.slideout-navigation):not(.mobile-header-navigation) .main-nav>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 800px; /* Adjust width to suit */
        margin-left: auto;
        margin-right: auto;
    }
    #762860
    Paul

    Works great, thanks very much.

    Merry Xmas!

    #762861
    David
    Staff
    Customer Support

    You’re welcome and Merry Christmas to you 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.