1) I hope that iframe tags are closed correctly
<IFRAME SRC='gnagna.htm' STYLE='width:100%;'></IFRAME>
set width using css or
<iframe src="somepage.htm" frameborder=0 scrolling="auto" width="800" height="600"> This browser can not use IFRAME. </iframe>
2) you can try using these
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
or
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
3)
You can get Ie7 compatibility by adding this to the chapter section.
<head> <meta http-equiv="X-UA-Compatible" content="IE=7" /> </head>
or
a faster way is to add the following line to .htaccess
Header set X-UA-Compatible IE=EmulateIE7
4)
or you can apply CSS style for html for ie7 / ie6
.somediv { height:30px; *height:30px; //hack for ie7 _height:30px; //hack for ie6 }
hope this helps
Parag
source share