View Single Post
Old 01-13-2013, 02:25 AM   PM User | #4
AndrewGSW
Senior Coder

 
Join Date: Apr 2011
Location: London, England
Posts: 2,120
Thanks: 15
Thanked 354 Times in 353 Posts
AndrewGSW will become famous soon enough
Quote:
Element ul not allowed as child of element ul in this context
Your nested ULs need to be contained within LIs.

Code:
<ul>
    <li><ul> 
            <li>...</li>
            <li>...</li>
         </ul>
    </li>
</ul>
Or to put it another way, ULs should only contain LIs.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
AndrewGSW is offline   Reply With Quote