Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I can' t move a table' s column

Status
Not open for further replies.

cesark

Programmer
Dec 20, 2003
621
Hi

I have a problem with a table’s column. I try to move the right limit of the second column to the left (with the visual tools of Dreamweaver) and I can’t. Only I can do it if I erase a table inside the second cell of the second row, if not, that right limit does not exceed of the right limit of the table inside the second cell. How can I move that second column right limit?

The table have 9 rows and 3 columns.

The rows 1, 3, 5 and 7 have the follow structure:

Row 1:
Code:
<tr> 
      <td width=&quot;53&quot; height=&quot;28&quot;> </td>
      <td width=&quot;293&quot; align=&quot;left&quot; valign=&quot;bottom&quot;><img src=&quot;../Di.gif&quot; width=&quot;257&quot; height=&quot;20&quot;></td>
      <td colspan=&quot;2&quot; valign=&quot;top&quot;><!--DWLayoutEmptyCell--> </td>
	</tr>
Row 3:
Code:
<tr> 
      <td height=&quot;30&quot;></td>
      <td align=&quot;left&quot; valign=&quot;bottom&quot;><img src=&quot;../Disseny/linea_datosBas_empr.gif&quot; width=&quot;257&quot; height=&quot;20&quot;></td>
      <td colspan=&quot;2&quot; valign=&quot;top&quot;><!--DWLayoutEmptyCell--> </td>
    </tr>
…and nº 5 and 7 like nº 3.



The rows number 2, 4, 6, 8 and 9 have the follow structure:
Code:
<tr> 
      <td height=&quot;164&quot;></td>
     <td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot;> </td>
      <td></td>
</tr>


Thanks
 
well u cannot do it. if the boundries are going to change from row to row insert different table per row...

Known is handfull, Unknown is worldfull
 
... or use colspans and insert a table into the td. Not the best solution... but if you have to use tables, then you have to use tables!

Jeff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top