Topic: Menu is not staying centered

or to be more accurate i should say I never got it centered. I can't figure out why.
here's the code for the menu

<body>
<div id="wrap">
<div id="logo">
    <img src="./images/emlogo.gif" width="900" height="200" border="1" alt="EM Logo" />
</div>
<div id="menu">
    <ul>
        <li><a href="./about.php">Home</a></li>
        <li><a href="./about.php">About Me</a></li>
        <li><a href="./about.php">Books</a>
            <ul>
                <li><a href="./about.php">Book 1</a></li>
                <li><a href="./about.php">Book 2</a></li>
            </ul>
        </li>
        <li><a href="./about.php">Contact</a></li>
    </ul>
</div>

and here's a portion of the CSS

    /* --- Main Menu - ala suckerish --- */
    #menu {
    background-color: #BA83A2;
    width:902px; /*-two more than the wrapper-*/
    text-align:center;
    }
    #menu ul {
    list-style: none;
    }
    #menu li {
    float: left;
    }
    #menu a {
    display: block;
    width: 5em;
    }

        /* child menu */
        #menu li ul {
        position: absolute;
        width: 5em;
        top: -999em;
        left: -999em;
        }        
        #menu li:hover ul, #menu li.hover ul {
        top: auto;
        left: auto;
        }
        
    /* --- Footer Menu --- */
    #footer ul {
    }
    #footer li {
    }
    #footer li a {
    }
    #footer li a:active, #footer li a:focus, #footer li a:hover {
    }

is there any reason I'm missing why my menu looks like this: http://lh6.ggpht.com/_Hsi79aT2rVc/SjmgBheSFXI/AAAAAAAABi0/SMO8ttIhHLw/s144/Webpage%20Title%20Here%20-%20Mozilla%20Firefox%2017062009%20100056%20PM.jpg

It's not live so I can't give a link but it's small so I can upload it to sendspace if you think it might be something in the entire CSS file.

Last edited by wolfkin (June 17, 2009 9:07 pm)

Vote up Vote down

Re: Menu is not staying centered

First of all, centre the wrapper div using margin: 0pt auto; width: 900px;
Then visit cssplay.co.uk to find a centering float left horiz ul/li menu.

http://www.cssplay.co.uk/menus/centered.html

Last edited by jlhaslip (June 17, 2009 11:44 pm)

My signature goes here --> X

Vote up Vote down

Re: Menu is not staying centered

oh it's floating.. i don't know how i missed that.. that explains why the backgrounds aren't showing up correctly either. I may have to rewrite this entire menu. least i know where to look now thanks.

Vote up Vote down