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

    Please, nedd CSS for center menu container

    Thank

    #138176

    Please, respond

    #138177

    please, please, please

    #138178

    You can add a margin to the menu container to center the menu – use following css code and change the value based on your requirements.:

    .main_menu {
    right: 100px;
    }

    You can also use media queries to set different margins ffor different screen resolutions:

    @media only screen and (max-width: 767px) {
    .main_menu {
    right: 10px;
    }
    }

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main_menu {
    right: 50px;
    }
    }

    #138179

    Hey,

    What type of header do you have? You can use this:

    .main_menu {
    right: 200px;
    }

    Regards,

    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Center menu container’ is closed to new replies.