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

0 points
Submitted by rufus hewetson
over 8 years

3/14 [resolved] It keeps saying Add the class "pull-left" to the first ul element [resolved]

 <body>
<div class="nav">
  <div class="container">
    <ul> 
      <ul class="pull-left">
      <li><a href="#">Name</a></li>
      <li><a href="#">Browse</a></li>
    </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>
  </div>
</div>

Answer 5591eb43d3292fc060000085

1 vote

Permalink

Hi rufus,

The exercise is asking you to add a class to your existing ul elements. Instead, you created brand new ul elements. Now you have four but the exercise is only expecting two.

You can read more about that in the pinned post for that exercise that you will find near the top of this list.

points
Submitted by Judy
over 8 years

2 comments

rufus hewetson over 8 years

thank you so much :)

Judy over 8 years

You’re welcome!