Design looks fine in all browsers EXCEPT IE6. Help?

Discussion in 'HTML & Website Design' started by lpxxfaintxx, May 2, 2009.

  1. #1
    HTML:

       <div id="navigation">
        	<ul>
                <li><a href="index.php">Home</a></li>
                <li><a href="profile.php">Profile</a></li>
                <li><a href="photos.php">Photos</a></li>
                <li><a href="videos.php">Videos</a></li>
                <li><a href="events.php">Events</a></li>
                <li><a href="sponsors.php">Sponsors</a></li>
                <li><a href="members.php">Members</a></li>
                <li><a href="mychapter.php">My Chapter</a></li>
            </ul>
        </div>
    
    Code (markup):

    CSS:
    Here's what it looks like in IE6.
    Here's what it looks like in IE7+, FF, Chrome, etc.

    I'm lost. :( Any ideas?
     
    lpxxfaintxx, May 2, 2009 IP
  2. chiqmar

    chiqmar Peon

    Messages:
    3
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Just add this code into your style sheet:

    *html #navigation ul li a {
    float:left;
    }

    If you have problem about css, just pm me... ready to help. (^_^)
     
    chiqmar, May 2, 2009 IP
    lpxxfaintxx likes this.