Click to See Complete Forum and Search --> : html trouble


jmaresca2005
11-09-2005, 09:10 AM
i am having a problem with the left nav bar. it keeps dropping down with the amount of text in the middle. if you click through the page you will see what i mean. how can i arrange the html to get the left nav list to stay in place? thanks

simplygraphix
11-09-2005, 09:23 AM
The default vertical alignment for table cells is MIDDLE, so the nav bar is being aligned in the *middle* of the cell. You need to explicitly put the VALIGN="TOP" attribute in the <TD>. IMP Note: Remember to do it for the table cell carrying the nav bar AND the main text content of the page. For example, if you see your HTML code, there is a <TD> just above the line <TABLE align=center border="1" bordercolor="white" bgcolor="white" CELLPADDING="2" CELLSPACING="0">
Change this to <TD VALIGN="TOP">

Ubik
11-09-2005, 11:57 AM
I would say put the valign="top" attribute in the <tr> instead of the <td>.