Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2611863
Center align main menu on header style 7
Closed

Comments

  • daimpa started the conversation

    Hello, is it possible to centre align main menu on header, with header style 7?

  •  501
    Penci replied

    Hi,

    Please try go to Customizer > Addtional CSS then add custom css to do that

    @media screen and (min-width: 1440px) {
    .site-header.header--s7 .site-branding {
        display: flex;
        align-items: center;
        justify-content: start;
        padding-left: 0;
        order: 1;
        flex: 1 auto;
    }
    .site-header.header--s7 .header-content__container .main-navigation {
        z-index: 2;
        flex: 2 auto;
        order: 2;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .site-header.header--s7 .header__social-search {
        float: right;
        height: 100%;
        order: 3;
        flex: 1 auto;
    }
    }

    Best Regards,

    PenciDesign