Browser scroll bar messing up my layout
my content area is 1200 pixels wide... I have a fixed image background that acts as the borders on each side of the content area... and a header graphic sliced up..
when I add more content to the point where the page needs to start scrolling vertically it throws off the page a few pixels and adds a few pixels of space to the left border... It doesn't do it in Fire Fox.. only IE and chrome...
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title>Welcome</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<style type="text/css">
html , body {
border:0;
margin:0;
padding:0;
background-color:#ffffff;
background-image:url('images/mainbg.jpg');
background-position: center top;
background-repeat:no-repeat;
background-attachment:fixed;
</style>
</head>
<body>
<table width="1200" align=center cellpadding="0" cellspacing="0">
<tr>
<td colspan="14">
<img src="images/index_01.jpg" width="1200" height="225" alt=""></td>
</tr>
<tr>
<td colspan="14">
<img src="images/index_02.jpg" width="1200" height="216" alt=""></td>
</tr>
<tr>
<td rowspan="2">
<a href=".html">
<img src="images/Untitled-1_03.jpg" width="133" height="66" border="0" alt=""></a></td>
<td rowspan="2">
<img src="images/index_04.jpg" width="1" height="66" alt=""></td>
<td rowspan="2">
<a href="content.html">
<img src="images/Untitled-1_04.jpg" width="200" height="66" border="0" alt=""></a></td>
<td rowspan="2">
<img src="images/index_06.jpg" width="1" height="66" alt=""></td>
<td>
<a href=".html">
<img src="images/Untitled-1_04-07.jpg" width="110" height="65" border="0" alt=""></a></td>
<td rowspan="2">
<img src="images/index_08.jpg" width="1" height="66" alt=""></td>
<td rowspan="2">
<a href=".html">
<img src="images/Untitled-1_04-09.jpg" width="89" height="66" border="0" alt=""></a></td>
<td rowspan="2">
<img src="images/index_10.jpg" width="1" height="66" alt=""></td>
<td rowspan="2">
<a href=".html">
<img src="images/Untitled-1_04-11.jpg" width="150" height="66" border="0" alt=""></a></td>
<td rowspan="2">
<img src="images/index_12.jpg" width="1" height="66" alt=""></td>
<td rowspan="2">
<a href=".html">
<img src="images/Untitled-1_04-13.jpg" width="168" height="66" border="0" alt=""></a></td>
<td rowspan="2">
<img src="images/index_14.jpg" width="1" height="66" alt=""></td>
<td rowspan="2">
<a href=".html">
<img src="images/Untitled-1_04-15.jpg" width="146" height="66" border="0" alt=""></a></td>
<td rowspan="2">
<a href=".html">
<img src="images/Untitled-1_04-16.jpg" width="198" height="66" border="0" alt=""></a></td>
</tr>
<tr>
<td>
<img src="images/index_17.jpg" width="110" height="1" alt=""></td>
</tr>
<tr>
<td colspan="14">
<img src="images/index_18.jpg" width="1200" height="18" alt=""></td>
</tr>
</table>
<table width="800" align=center cellpadding=0 cellspacing=0>
<tr>
<td>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<p>
</table>
</body>
</html>