Hey, I am trying to make sure my page validates but it seems to have a problem with me doing a list like so: <ul> <li>SECTION 1</li> <ul> <li>link</li> <li>link</li> </ul> <li>SECTION 2</li> <ul> <li>link</li> <li>link</li> </ul> <ul> Code (markup): I want to make a list like this to style the left menu down the side of my site. Should I just make totaly new lists for each section instead?
Nope. He needs to take the </li> tag above the nested lists and wrap them AROUND the nested lists, like so: <ul> <li>List Item</li> [b]<li>List Item <ul>[/b] <li>List Item</li> <li>List Item</li> <li>List Item</li> [b]</ul> </li>[/b] <li>List Item</li> <li>List Item</li> </ul> Code (markup):
Nope. Like I said, there are other issues. The code I provided is the proper way to nest lists of lists.