Chateau – Safari problem

  • Unknown's avatar

    I’ve added the following code to my CSS to move the navigation menu below the header of my site:

    #menu {
    	position:absolute;
    	width:960px;
    	top:290px;
    	text-align:center;
    }
    
    #menu ul {
    	display:inline-block;
    }
    
    #branding {
    	padding-bottom:80px;
    }

    If works fine in Chrome, but in Safari and Firefox, the menu is placed over the first line of page content.
    Any idea how to move the nav menu below the header so that it works across all browsers?

    Thanks –
    Mike

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

  • Unknown's avatar

    I think you’ll get a more consistent result if you make the absolute positioning for the #menu work relative to the #branding, like this:

    #branding {
    	position: relative;
    	padding-bottom:100px;
    }
    #menu {
    	position:absolute;
    	width:960px;
    	bottom:0;
    	text-align:center;
    	padding: 0;
    	margin: 0;
    	height: 30px;
    }

    Adjust the padding-bottom value to move the menu.

    I love what you’ve done with the Chateau theme. Hopefully, it will make things a little less obscurely misanthropic and a little more optimistically conspicuous. :)

  • Unknown's avatar

    Thanks, works like a champ!

    Any idea how to pull the dead space out from below the header so that menu fits snugly underneath?

    And thanks for the compliment. It’s taken me forever to figure out what little I’ve done.

  • Unknown's avatar

    Ah… you already gave me the answer. Mission accomplished. Much gratitude.

  • The topic ‘Chateau – Safari problem’ is closed to new replies.