From: "Michael Clayton" <[EMAIL PROTECTED]>

>I discovered that the following code is what breaks the site in IE.
>
>ul.nav {
>    list-style: url(bullet_small.jpg);
>    line-height: 1.5em;
>    margin-left: 18px;
>    padding: 0;
>    }
>
>The list-style specifically is what kills it.  Does anyone know why applying
>a bullet image mucks up IE?  I guess that's a dumb question. ;)  Does anyone
>know how to get around it?  For now I'll just apply a background image, I
>guess.

You may have more success with a background image anyway, but there is another 
trigger for this little problem, and that is the padding at the top of the 
columns (probably specifically the left column). You can probably solve things 
and get to keep your list-style-image with the following change to your CSS - 

.column-one-content, .column-two-content, .column-three-content
{
padding: 0 6px 6px; /* remove top padding */
border: none;
color: #000;
margin-top: 6px; /* add top margin to compensate for padding loss */
        }

I hope that helps,

~holly 
 
                   
______________________________________________________________________
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