View Single Post
  #5 (permalink)  
Old 07-29-2007, 09:46 PM
TechieGuy's Avatar
TechieGuy TechieGuy is offline
Super Moderator
 
Join Date: Jul 2007
Location: Canada
Posts: 1,172
TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)
Default

I have looked at the source to your Web page and you seem to have a lot of table cells. Most of the cells are also spanning into other columns, which could be the reason your are having difficulty.

You only need two colums in the table so you should just have the following:

<table id="Table_01" width="800" height="667" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
[Your image buttons here]
</td>
<td>
[Your page content here]
</td>
</tr>
</table>

You can also use <div> but they are more complex to use since you do need a CSS file for them.
Reply With Quote