Moving Menu to center of page?

  • Unknown's avatar

    Hi there,

    I am fairly new to CSS and frankly it all confuses me. Have been trying to learn with the beginners guide but not much luck. I just upgraded to the Photography premium theme.

    Just wondering if anyone would know how I could move the menu which is stuck on the right hand side of the page to under my banner?

    The blog in question is http://www.friendsonfilm.wordpress.com

    Any help is much appreciated and I’ll put a link to your site in my links section.

    Thanks in advance

    Duncan

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Resolved! If anyone is interested for future use.

    #navigation {
    float:left;
    margin-left:140px;
    }

  • Unknown's avatar

    That will work until you have to add another tab, then it will be off-center as it will be if someone has a + zoom level set on their browser. I’ll take a look at it is a little while and hopefully come up with a solution that will work regardless of number of tabs or browser settings.

  • Unknown's avatar

    This will center it without any consequences.

    #navigation {
    text-align: center;
    }
    
    #navigation ul {
    display: inline-block;
    float: none;
    }
  • The topic ‘Moving Menu to center of page?’ is closed to new replies.