Forum Moderators: open

Message Too Old, No Replies

Nested table in navigation menu

Having problems. Need help.

         

spikedo55

12:26 pm on May 28, 2003 (gmt 0)

10+ Year Member



On my site, I use a lefthand vertical navigation menu. It only had 5 primary pages listed. Now I want to show a few secondary pages underneath each primary page in the nav menu. I'd like to put a small triangle in front of each secondary page text to show it comes underneath the primary page. I figure I need to break each row into two columns, one for a triangle symbol and one for the text. But I'm having a helluva time making that work. Can anyone help with example code?

richardb

12:33 pm on May 28, 2003 (gmt 0)

10+ Year Member



<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>

produces 2 cols + 2 rows

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>

poduces a span