Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #14031
    daenuu
    Member

    would it be possible to center the navigation? already managed it to center the logo with custom css:

    #header-content {
    margin-left: 14%;
    margin-right: 14%;
    }

    thanks for any advice
    daniel

    #14045
    Sakin
    Keymaster

    @daenuu: I need to check in your site. So, send me your site URL.

    #14055
    daenuu
    Member

    bergwisel(dot)ch/wisel
    thank you

    #14075
    Sakin
    Keymaster

    @daenuu: This is more complicated. You should consider hiring CSS Developer. I have come up with the CSS. But I am not sure it will work or not. Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #access ul {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    #access ul li {
        display: inline-block;
        float: none;
    }
    #access ul li a { float: none; }
    #access ul li ul li {
        display: block;
        float: left;
        width: 100%;
        text-align: left;
    }
    #access ul li.default-menu { display: none; }
    @media screen and (max-width: 767px) { #access ul { display: none; text-align: left; }  }
    #14342
    daenuu
    Member

    Hey Sakin,
    that works pretty good for me (just little things like no line on the left link and a little white distance on every left side of the rest but it works) – thank you!!

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