I'm trying to add a content list which will expand as sections are added. I dont want to use a table, I just want to add the following inside a menu div which I created in Dreamweaver:
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
The problem is that not all of my menu items end up with<li> tags, usually the first 4 do then the rest are just ordinary hyperlinks. I've tried adding the tags to the first, middle and last items - I've tried specifying 'dynamic' - but nothing seems to produce the simple effect I'm after. How do we setup the rows in a variable list so that every item will take on the <li> tags?
Thanks
Paul
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
The problem is that not all of my menu items end up with<li> tags, usually the first 4 do then the rest are just ordinary hyperlinks. I've tried adding the tags to the first, middle and last items - I've tried specifying 'dynamic' - but nothing seems to produce the simple effect I'm after. How do we setup the rows in a variable list so that every item will take on the <li> tags?
Thanks
Paul
Comment