On 23/05/2009, at 11:22 AM, Maxim Soloviev wrote: > Hi guys, > > http://ares-pearl-b1.nakea.net/ > Could you please help me figure out why text looks soooo big in > IE6/7/8. >
Hi Maxim - There is some markup in the #header which has inline styles setting the font-size to 20pt. The spans aren't closed and it appears IE is applying the style to the rest of the document... <p><strong><span style="font-size: 20pt"><span style="color: rgb(255,255,255)" /></span></strong></p> <p> </p> <p> </p> <p><strong><span style="font-size: 20pt"><span style="color: rgb(255,255,255)" /></span></strong><span style="font-size: 20pt" /></p> You can safely remove all of this. It's not doing anything. I haven't looked at the whole document, but the header could be tidied up quite a bit from a markup perspective. One way of doing it would be as follows: <div id="header"> <h1>American Jelly Fish Society</h1> <p>More for you and me</p> </div> Then you've got a simple markup structure to apply your styles to. I hope that gets you started. Cheers, Tim ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
