View Single Post
Old 12-08-2012, 08:36 AM   PM User | #2
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Hello legendrock7,
Your ul menu is not formed correctly to be a dropdown. It should be more like this -
Code:
<ul>
        	<li>Linky</li>
        	<li>Linky</li>
        	<li>Linky
                <ul>
                    <li>dropped Linky</li>
                    <li>dropped Linky</li>
                    <li>dropped Linky</li>
                </ul>
            </li>
        	<li>Linky</li>
        	<li>Linky</li>
        </ul>
Look at a demo of mine of a CSS dropdown menu here.
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote