Thanks to Robert my problem was fixed. I needed to set some margin and padding for the ul.

Here is the code:

#left ul {
   margin: 0;
   padding: 0;
   margin-top: 10px;
   }

#left li {
list-style-type: none;
   margin-left: 20px;
}

Thanks Robert!

Robert O'Rourke wrote:
www.livinghopecollege.com/test2/

It looks fine in Flock, but in IE the <li> quick links are messed up. Anyone know if this is an IE bug or what and how to fix it?

Trey Copeland
Alright Trey,

I'd start by setting a default margin and padding to the ul. Different browsers have different default settings for these attributes. For example this will be more consistent across browsers (negative margins do funny things to IE):

#left ul {
        margin: 0;
        padding: 0;
}

#left li {
        list-style-type: none;
        margin-left: 20px;
}


There's something odd going on where IE displays a '<' at the start of each link, hopefully just a result of the negative margin or the float.... I'm not sure on that one. Try fixing a width on the ul and experiment with padding and margin. Let us know how you get on =]

Rob
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to