[Resolved] main menu vertical align

Home Forums Support [Resolved] main menu vertical align

Home Forums Support main menu vertical align

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #242092
    Radek

    Hi Tom,

    what is the best way to align main menu with floating right setting to bottom of inside-header container ?

    Thanx Radek

    #242170
    Tom
    Lead Developer
    Lead Developer

    Hmm, it’s possible using absolute positioning, but that can be troublesome when it comes to being responsive.

    For example:

    @media (min-width: 769px) {
        .main-navigation {
            position: absolute;
            bottom: 0;
            right: 0;
        }
    }
    #242294
    Radek

    Sorry, this positioning menu to bottom right of header. I need menu at bottom right of inside-header (respecting container width). Is that possible ?

    Thanx Radek

    #242296
    Radek

    This works perfect:


    @media
    (min-width: 769px) {
    .main-navigation {
    margin-top: 65px;
    }
    }

    But I don’t know, if this is valid and correct solution.

    Radek

    #242376
    Tom
    Lead Developer
    Lead Developer

    Looks good to me 🙂

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