Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1065225

    hi, I have a menu that is not displayed correctly.
    Menu contains 3 items (pages), and are displayed in footer area using the navigation menu widget.
    in wide screen display, the 3 items of menu appear horizontally and overlap each other.
    In table/phone display it works fine, all menu items display in a column..

    How can I have this menu display properly?

    #1065330

    Hey ANDRE,

    This code is causing that to happen, it’s the display argument.

    @media screen and (min-width: 981px) {
    .menu li {
        display: inline-block;
        float: none;
        margin-left: -5px;
    }
    }

    I’m not sure where it’s added though.

    Best regards,
    Rikard

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