I have a logo that was originally 625x100 pixels.
The problem is that if I put it in browser it stretches the image.
So what I did was slice the image into 3. The middle slice is just a solid color with a strip that is a solid color, so this is the piece I use to stretch, since it won't affect the picture.
The problem is the 2 outside images look great, but the middle is showing at exactly the same size (even though I have the width as "100%" in the middle cell.
What am I doing wrong?
Here is a snippet of the table that has the image in it.
Thanks,
Tom.
The problem is that if I put it in browser it stretches the image.
So what I did was slice the image into 3. The middle slice is just a solid color with a strip that is a solid color, so this is the piece I use to stretch, since it won't affect the picture.
The problem is the 2 outside images look great, but the middle is showing at exactly the same size (even though I have the width as "100%" in the middle cell.
What am I doing wrong?
Here is a snippet of the table that has the image in it.
Code:
<tr height="100">
<td><table width="100%" border="0" cellspacing="0" cellpadding="0" summary="Layout Table">
<tr>
<td><img src="images/Contour_logo_intranet1_1x1.gif" width="496" height="100" hspace="0" vspace="0"></td>
<td><img src="images/Contour_logo_intranet1_1x2.gif" width="100%" height="100" hspace="0" vspace="0"></td>
<td><div align="right"><img src="images/Contour_logo_intranet1_1x3.gif" width="129" height="100" hspace="0" vspace="0"></div></td>
</tr>
</table></td>
</tr>
Thanks,
Tom.