This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Jason Hulbert
almost 9 years

3/14 What is wrong? It says I need to add pull-left to the first part

<ul>
        <ul class="pull-left">
        <li><a href="#">Name</a></li>
        <li><a href="#">Browse</a></li>
        </ul>    
        </ul>
        
        
        <ul>
        <ul class="pull-right">
        <li><a href="#">Sign Up</a></li>
        <li><a href="#">Log In</a></li>
        <li><a href="#">Help</a></li>
                </ul>
            </ul>
        
        <ul>
        <ul class="pull-right">
        <li><a href="#">Sign Up</a></li>
        <li><a href="#">Log In</a></li>
        <li><a href="#">Help</a></li>
                </ul>
            </ul>

Answer 55608df1937676ad610007f5

0 votes

Permalink

Hi Jason,

Instead of adding the pull-left class to your first ul element, you instead added a new ul element – actually it looks like you have added several.

You can read more about this exercise over here: http://www.codecademy.com/forum_questions/53799860548c351fcf0061b0

points
Submitted by Judy
almost 9 years

5 comments

Jason Hulbert almost 9 years
    <ul class="pull-right">
    <li><a href="#">Sign Up</a></li>
    <li><a href="#">Log In</a></li>
    <li><a href="#">Help</a></li>
            </ul>
Jason Hulbert almost 9 years

like that

Judy almost 9 years

Yes, like that.

benjaminmobbs almost 9 years

i do

Judy almost 9 years

You do what, benjaminmobbs?