I' know I'm being a div here but I'm working on a new product layout for v9. I have an image which is 130x180 and some text. The main product window is 580 wide.
So, I've got
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>image</td>
<td>text</td>
</tr>
</table>
This creates the image in the left cell and the text in the right. Fine, but I want the left hand cell to be narrower as it's 290 (50%) and the image is only 130.
Changing to <td width="200"> or <td width="35%> doesn't seem to do anything, the cells stay equal which makes me think there is something over-riding the width command. My brain has stopped working so what's the deal here?
PS: I have searched the forum.
So, I've got
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>image</td>
<td>text</td>
</tr>
</table>
This creates the image in the left cell and the text in the right. Fine, but I want the left hand cell to be narrower as it's 290 (50%) and the image is only 130.
Changing to <td width="200"> or <td width="35%> doesn't seem to do anything, the cells stay equal which makes me think there is something over-riding the width command. My brain has stopped working so what's the deal here?
PS: I have searched the forum.
Comment