blueindian1
Programmer
hi,
I have a banner that runs across the top of a web application. I have it chopped into 3 sections. The middle section is a 1 pixel wide slice which in IE will expand and contract such that the banner always spans the width of the screen. This does not work in Netscape and I'm hoping someone can shed some light on how to do this. As an aside, it also does not work on IE for Mac, but that's not terribly important. The code is below, thanks in advance.
I have a banner that runs across the top of a web application. I have it chopped into 3 sections. The middle section is a 1 pixel wide slice which in IE will expand and contract such that the banner always spans the width of the screen. This does not work in Netscape and I'm hoping someone can shed some light on how to do this. As an aside, it also does not work on IE for Mac, but that's not terribly important. The code is below, thanks in advance.
Code:
<!-- begin banner-->
<table width=100% border=0 cellpadding=0 cellspacing=0>
<tr width=100%>
<td width=366>
<img src="../images/2_01.jpg" width="366" height="79">
</td>
<td>
<img src="../images/2_02.jpg" width="100%" height="79">
</td>
<td width=408>
<img src="../images/2_03.jpg" width="408" height="79">
</td>
</table>
</td>
</tr>
</table>