MyBB Community Forums

Full Version: How to center a div in an absolute position
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to center a div for the navigation menu which is not working with margin: auto auto; and when I take out the position: absolute; it will mess up the layout.

The div is called "navigation_header".

Preview: http://gyazo.com/e8bb3cb2d6cc081f47deb726dd3cdb54
Website: http://www.ComingSoon.VisualizeEdits.com/
Use this:



#navigation_header {
    border: 1px solid #000000;
    bottom: 0;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    top: 119px;
    width: 800px;
}

(2013-07-19, 05:32 AM)Cedric Wrote: [ -> ]Use this:



#navigation_header {
    border: 1px solid #000000;
    bottom: 0;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    top: 119px;
    width: 800px;
}


Thank you so much!