treehouse : what would you like to learn today?
Web Design Web Development iOS Development

ie6 problem / wordpress

  • So I can't figure out how to get a menu/list to have the same margin-left in FF and IE 6&7 (not 8).
    Here's the link:
    http://www.ericandcarmelita.com
    Ironically, IE6&7 works how I thought it work and FF puts an automatic ~margin-left:30px;

    I do not get why, nor have I figured out a way to fix this.
    Also, this is a Wordpress theme. Could that be part of the problem?
  • use a global reset command.

    * { margin: 0; padding: 0 }

    put that at the top of your css document. The * says to apply to all rules.
  • FIXED!
    TY!!