• Hey guys,

    I have tried different approaches with floats and centers but it did not work out at all.
    Can someone please help me im desperate here!!
    My site in question is Tokyoinn

    Regards,

    DTjai

Viewing 1 replies (of 1 total)
  • Hi DTjai

    I like the style of your site – really nice.

    The css code that governs the menu seems to be

    .menu {
    width: 96%;
    margin: 0 auto;
    padding: 0 2%;
    max-width: 1062px;
    }

    Making your padding 0 and your max-width as 550px it seems to work fine.

    In other words make this the code;

    .menu {
    width: 96%;
    margin: 0 auto;
    padding: 0;
    max-width: 550px;
    }

    (The max-width I’ve suggested here seems to work fine for your menu. If you add or remove items it may need to be altered)

    Be careful as any update on the theme will cause your changes to be lost. Firstly check to see if your theme allows for css customization. If it doesn’t you will need to create a child theme to do it.

    I hope this helps.
    Dave Foston

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme:Restaurateur] How to centre navigation menu’ is closed to new replies.