Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Themes and Templates
    In reply to: Menu Alignment

    Glad I could help.

    Forum: Themes and Templates
    In reply to: Menu Alignment

    Hi there.

    The stylesheet located here –> /wp-content/themes/mystile/styles/grey.css
    contains an ID called #navigation.

    Here is the complete ID here

    #header #navigation {
    float: right;
    clear: none;
    border: 0;
    background: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: auto;
    }

    All you need to do is change the property on float from “right” to “left” so it will look like this

    #header #navigation {
    float: left;
    clear: none;
    border: 0;
    background: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: auto;
    }

Viewing 2 replies - 1 through 2 (of 2 total)