• tyler7788

    (@tyler7788)


    How do I move the main navigation from the right side to the left side of a page?

Viewing 4 replies - 1 through 4 (of 4 total)
  • downtimeinc

    (@downtimeinc)

    you need to float #logo right and the #main-nav to the left (if that’s where you want it…). you can add the following to the bottom of your style.css file in editor:

    #logo {
    float: right;
    }

    nav#main-nav {
    float: left;
    }

    hope this helps

    WPyogi

    (@wpyogi)

    @downtimeinc – please do not advise people to modify theme files – changes should be made in a child theme or custom CSS.

    Ok I had the same problem so I tried this solution.
    The menu is exactly where I want it (thank you)
    but my logo is too far right now.
    How do I get it back to the original position. Thank you for helping me.

    Never mind, got it to move over with a -px. This set of CSS code isn’t going to work for me. Thanks anyway.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Moving Main Navigation from Right to Left’ is closed to new replies.