Okay
  Public Ticket #2928331
Align text in header to top
Closed

Comments

  •  2
    Revisemarketing started the conversation

    Hi, 

    Is it possible to align the menu items in the header navigation to the top? Now the menu items align in the middle with the logo. See the screenshots for the current situation and the desired situation.

    Thanks!

    Mathilde

  •  2,959
    Andrew replied

    Hello Mathilde,

    Use the following CSS.

    @media only screen and (min-width: 1000px){
        #header-outer:not([data-format="left-header"]) #top nav >ul >li {
            -webkit-align-items: baseline;
            align-items: baseline;
            padding-top: 30px;
        }
    }
    

    Regards,

  •  2
    Revisemarketing replied

    It works! Thank you!