Okay
  Public Ticket #2888770
Left Header Align Menu to Top
Closed

Comments

  •  30
    lumpy5000 started the conversation

    Hello. Instead of the Left Header Menu being aligned to the vertical middle, I would like the menu aligned to the top, but will also need control of how much spacing there is between the logo and the menu. Can this be done via CSS? Thank you. 

  •  1,878
    Judith replied

    Hi There,

    Thanks for keeping in touch.

    #top nav >ul {
        margin-top: -226px;
    }

    Thanks.

  •  2,960
    Andrew replied

    Hi there,

    Try the following CSS.

    @media only screen and (min-width: 1001px){
        body[data-header-format="left-header"] #header-outer nav {
            display: block;
            padding-top: 30px;
        }
    }
    

    Use the padding to increase or reduce the space.

    Regards,

  •  30
    lumpy5000 replied

    Thank you, both. I tried each of these options, and they both worked perfectly!! Thanks again!