A Frequent Problem with ie6: The bottom of the text (e.g. g y p) get cut off and make text illegible. This mostly happens with two line breaks and can be fixed by using a larger line-height in css.
To fix the problem we are going to create a class using the internet explorer 6 box hack.
We need to locate the exact area that we are having the problem with. For me the text was being cut off at .description h4 a
* HTML .description h4 a {
line-height: 1.2em;
}
line-height: 1.2em;
}
To fix the text cut off issue without the box hack just simply created a css class and adjsut the line-height
p { line-height: 1.2em; }
1 comment so far ↓
If you found this post useful click the share this button. Contribute below by adding a comment, no registration is required.
DCE Related Posts
This post teaches you how to replace CSS text links with an image and an image hover state. Read Full Article...
Fixed my problem, thanks for posting this!
Leave a Comment