Basically in the code below ive got 2 columns in the first row and 2 in the the second, follow by 2 single row, in the first row i want the left <td> to be about 40% and obv the 2nd <td> to be about 60% but i want the row that is below it to be different... about 10% and 90% ... for some reason its keeping them the same, i want the to split away from each other, instead of followin, if you understand me,,,
thanks LandS p.s all php code works fine its just the table ...
<table border='1' bgcolor='#ffffff' width='100%'>
<tr>
<td background='/images/sidebar_header_bg.jpg' height='35' width='60%'>
<font size='5' color='#ffffff' face='arial'><b>".$row['title']."</b></font>
</td><td background='/images/sidebar_header_bg.jpg' height='35' >
<font size='5' color='#ffffff' face='arial'><b>Swapper: </b>".$row['username']."</font>
</b>
</td></tr><tr>
<td width='10%'><img src='/swap/".$row['photo']."' width='90' height='90'>
</td><td align='left' valign='top'>
<font size='4' color='#657383' face='arial'><b>Value: </b>
". $row['price']."
</font></br>
<font size='4' color='#657383' face='arial'><b>Location: </b>
". $row['location']."</br>
</font>
<font size='4' color='#657383' face='arial'><b>Postage: </b>
". $row['delivery']."
</font>
</td>
</tr>
<tr>
<td colspan='2' width='100%'>
<font size='4' face='arial' color='#657383' >". $row['swap']."</font>
</td></tr><tr>
<td align='right' width='100%' colspan='2' valign='top' background='/images/sidebar_header_bg.jpg'>
<font size='2' color='#ffffff' face='arial'>
<b>Posted On </b>". date('d M Y',strtotime($date))." <b>at</b> ". $row['time']."
</font>
</td>
</tr>
</table>