View Single Post
Old 12-08-2012, 07:16 PM   PM User | #5
legendrock7
New Coder

 
Join Date: Sep 2012
Posts: 61
Thanks: 8
Thanked 0 Times in 0 Posts
legendrock7 is an unknown quantity at this point
Quote:
Originally Posted by Excavator View Post
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.
Quote:
Originally Posted by Excavator View Post
Did you look at the demo? Click on the Preview/Markup/CSS links in the upper right, it shows you exactly how to do it. Pretty much all you'd have to do is change out the anchor links/text and adjust your sizes to suit.
When i try to add the
Code:
 <li><a href="#">Linky</a></li>
                        <li><a href="#">Linky</a></li>
                        <li><a href="#">Linky</a></li>
                        <li><a href="#">Linky</a></li>
                        <li><a href="#">Linky</a></li>
                        <li><a href="#">Linky</a></li>
my whole design/nav bar gets mixed up.
legendrock7 is offline   Reply With Quote