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!

Table problems

Status
Not open for further replies.

laruet

Technical User
Jul 11, 2005
6
US
I created a webpage in Dreamweaver using a table in the Layout mode. In the first column I have a navigator bar with several rows for each link. The problem happens when I start putting different size cells into the second and third columns. Sometimes the first column starts to expand moving the links down. How can I sterilize the first column so it doesn’t expand.
 
First of all using tables for Layout, is not recommended. The preffered method is with divs, and CSS.

Anyway to answer your question, Table cells are interdependent, that means that if one cell grows, the rest of them grow. To get around this add another table inside the cell you don't want to grow, and put your menu in there.
Tht way th inner table can have its ow dimensions and not be affected by the outer cell.


Code:
[blue]<table>
<tr><td>[/blue][red]<table><tr><td>menu</td></tr></table>[/red]
[blue]</td>
<td>middle cell</td><td>right cell</td>
</table>[/blue]

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top