Click to See Complete Forum and Search --> : horizontal scrollbar problem


Ruriko
07-14-2006, 12:53 AM
This is my layout http://wor.awardspace.com/
In IE you can see the horizontal bar but in Firefox you don't see it. How can I remove the horizontal bar for IE?

coothead
07-14-2006, 05:36 AM
Hi there Ruriko,

try it like this...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Home Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style type="text/css">
<!--
body {
background-color: #e78631;
margin:0;
padding:0;
}
table {
width:720px;
margin:auto;
}
-->
</style>

<!--[if IE]>
<style type="text/css">
#notie {
display:none;
}
</style>
<![endif]-->

</head>
<body>

<table cellpadding="0" cellspacing="0"><tr>
<td colspan="3">
<img src="images/index_01.gif" width="720" height="186" alt=""></td>
</tr><tr>
<td rowspan="2"><img src="images/index_02.gif" width="169" height="414" border="0" usemap="#Map" alt="" ></td>
<td height="382">

<!--[if IE]>
<iframe src="server.html" name="main" width="517" height="382" frameborder="0" scrolling="yes" marginheight="5" marginwidth="6">
<![endif]-->

<iframe id="notie" src="server.html" name="main" width="517" height="382" frameborder="0" marginheight="5" marginwidth="6">
Your browser does not support iframes.</iframe></td>
<td rowspan="2"><img src="images/index_04.gif" width="34" height="414" alt=""></td>
</tr><tr>
<td><img src="images/index_05.gif" width="517" height="32" alt=""></td>
</tr></table>

<map name="Map" id="Map">
<area shape="rect" coords="26,39,142,70" href="main.php" target="main" alt="">
<area shape="rect" coords="25,77,142,109" href="download.html" target="main" alt="">
<area shape="rect" coords="25,119,142,150" href="server.html" target="main" alt="">
<area shape="rect" coords="26,159,140,190" href="http://com2.runboard.com/bdragonflarero" alt="">
<area shape="rect" coords="25,204,141,236" href="#" target="main" alt="">
<area shape="rect" coords="25,246,142,278" href="#" target="main" alt="">
</map>

</body>
</html>
coothead