Click to See Complete Forum and Search --> : Text Cut Off In IE6


mikegreenia.com
06-04-2008, 08:56 AM
Can somebody help me with this issue. I've tested this site in FF, IE7, Safari and everything is good. In IE6 the text is cut off on one of my pages. The URL is:

http://www.bulldog-camp.com/info.html

I've also attatched the screen shot of the problem.

If you need to see the code let me know.

mikegreenia.com
06-04-2008, 09:05 AM
pictures and home pages are cut off as well.

Centauri
06-04-2008, 09:20 AM
The #content div has the overflow hidden whilst the height is expicitly set for IE6. The overflow must also be reset for IE6, and the rule should come after the normal rule in the css :#content {
min-height:550px;
margin: 0 10px;
padding:10px;
overflow: hidden;
}

* html #content {
height:550px;
overflow: visible;
}