Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello i have this css dropdown menu. I want the homepage to start on the left site of the page not on the center. Herein is the style sheet and the div tags for the dropdown navigation bar:

  • Home
  • Abour
    • About 1
    • About 2
    • About 3
    • About 4
  • Blog
    • About 1
    • About 2
    • About 3
    • About 4
  • Contact

    ul, li, html, a { margin:0; padding: 0;

    }

    body { text-align: center; margin: 0 auto; padding: 0; font: 65% arial, sans-serif;

    }

    li { list-style-type: none;

    }

    a { text-decoration: none; color: #034af3;

    }

    ul#nav { width: 22.5em; height:2.5em; margin: 2em auto 0; font-size: 1.5em;

    }

    ul#nav li { position: relative; float: left; width: 5em; height: 2em; line-height: 2em; background-color: #465c71; display: block; padding: 4px 0px; border-right: 1px #4e667d solid; color: #dde4ec;

    }

    ul#nav li.noBorder { border-right: none; }

    ul#nav li:hover { background-color: silver; }

    ul#nav li a { display: block; float: left; width: 100%; }

    ul#nav li ul { display: none; }

    ul#nav li:hover ul { display: inline; float: left; width: 10em; height: auto; margin: 0; padding: 0.27em; font-size: 1em; text-align: left;

    }

    ul#nav li:hover ul li { width: 100%; height: 2em; background-color: Yellow; border: none; border-bottom: 1px solid silver; overflow: hidden;

    }

    ul#nav li:hover ul li a { display: block; margin: 0; padding: 0 0 0 .3em; height: 100%; line-height:2em;
    color: #465c71; }

    ul#nav li:hover ul li a:hover { background-color: white; }

    share|improve this question

    1 Answer

    up vote 1 down vote accepted

    Try:

    body { text-align: left; }
    ul#nav { margin: 2em 0 0; }
    
    share|improve this answer
    Thank you very much i really do appreciate it. – onfire4JesusCollins Nov 15 '10 at 21:58

    Your Answer

     
    discard

    By posting your answer, you agree to the privacy policy and terms of service.

    Not the answer you're looking for? Browse other questions tagged or ask your own question.