Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #422540

    how can i center the 2nd top menu? http://business.diefleischerei.at/

    it looks like the menu is not really centered?

    #422542

    #422817

    Hey!

    It’s because of this code you have in Quick CSS:

    #header_meta .sub_menu {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        width: 550px !important;
    }

    Wrap it with a media query so it only affects the desktop view:

    @media only screen and (min-width: 767px) {
    #header_meta .sub_menu {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        width: 550px !important;
    }
    }

    Regards,
    Josue

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