You might want to clean up some of these problems:
Quote:
line 62 column 19 - Warning: '<' + '/' + letter not allowed here
line 106 column 6 - Warning: missing </span> before <p>
line 106 column 34 - Warning: inserting implicit <span>
line 110 column 1 - Warning: discarding unexpected </span>
line 134 column 1 - Warning: missing </div>
line 135 column 70 - Warning: <a> proprietary attribute "alt"
line 136 column 27 - Warning: <a> proprietary attribute "alt"
line 136 column 71 - Warning: <a> proprietary attribute "alt"
line 136 column 124 - Warning: <a> proprietary attribute "alt"
line 106 column 6 - Warning: trimming empty <span>
|
You should use conditional comments to address the specific fixes you're going to need to make IE stop acting stooooopid. Take the hacks out of your main css file and put them in a separate 'iefixes' css file. The *html hack will NOT work with IE7.
This is not correct CSS:
#outer
{
align: center;
width: 768px;
background: #ffffff url(images/content_rpt.jpg) repeat-y;
}
There is no "align: center" for CSS, not like that. If you want to properly center your container, use margin: 0 auto; (for NON IE browsers) and add text-align: center on the body to make IE 6 and below center.
You should zero out marign and padding on everything first, add it back in as needed.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|