Viewing 3 replies - 1 through 3 (of 3 total)
  • Joey

    (@leglesslizard)

    Hi there,

    You need to add some styles to the menu to change how it is displayed and let it know you want it in the center.

    Adding the following to your stylesheet should do as you want (if you have multiple elements using class=”menu” then be more specific with the css rule):

    .menu {
      display: table;
      margin: 0 auto;
    }

    Hope that helps,
    Joey

    Hello,

    A slightly different way to achieve centring the navigation would be to remove the float from the li and set them to display inline-block. In your stylesheet find

    #access ul li {
        position: relative;
        display: block;
        float: left;
        white-space: nowrap;
    }

    and replace with:

    #access ul li {
        position: relative;
        display: inline-block;
        white-space: nowrap;
    }

    ~ Steven

    Thread Starter razii

    (@razii)

    Thx for help. I found solution. Damn, I lose 5 hurs looking fore one opsion. That opsion was hiden in tempera settings in graphics tab.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘menu in center’ is closed to new replies.