And this is the problem:
it says i need to add at least 5 li items
when i add our remove on this doesn’t change
1 <li><a class = "nav-link" href = "#how_to_take_care_of_a_bunny">Is a bunny right for me?</a></li>
2 <li><a class = "nav-link" href = "#do_i_like_bunny?">What materials do I need for my bunny?</a></li>
3 <li><a class = "nav-link" href = "#what_do_bunny_eat?">What do bunny's eat?</a></li>
4 <li><a class = "nav-link" href ="#bunny_proof">Is my house bunny proof?</a></li>
5<li><a class = "nav-link" href = "#where_to_get">Where do I get a bunny</a></li>
6 <li><a class = "nav-link" href = "#omg_i_killed_it">I kiled my bunny</a></li>
removing line 6 doesn’t fix it
and removing 6 and 5 also not
trying adding this:
The technical documentation one I can’t link you nor give you more information because
I can only acces the forums and my profiele at this moment
this is what happens when i try to open anything else here this happens:
I don’t know which one is number 4, you can copy & paste the whole text of the user story here so we know what you need help with (which you can see in the test suite after running tests)…
I don’t want to give you the solution, but I need to know what you need help with to give you any hint
there you go then: ## 4. Each element with the class of “main-section” should also have an id comprised of the innerText contained within it, with underscores in place of spaces. The id may include special characters if there are special characters in the respective innerText. (e.g. The that contains the header, “JavaScript & Java”, should have a corresponding id=“JavaScript_&_Java”).
But if i add a header inside the section then it doesn’t help it either
this is what i did
<section class="main-section" id="getting_a_bunny"> <-- section begins
<header id = "main"> <-- header now is inside<--
</header>
<ol>
<li><a class="active" href="#is_a_bunny_right_for_me">Is a bunny right for me?</a></li>
<li><a href="#what_do_bunny_eat?">What do bunny's eat</a></li>
<li><a href="#materials">What materials do I need for my bunny?</a></li>
<li><a href="#house">Is my house bunny proof?</a></li>
<li><a href="#where">Where do I get a bunny</a></li>
</ol>
</section> <--- section ends
Edit: This post is based on the link in the first post. Please link to the current pen you are working on if that isn’t it.
You are missing the do_i_like_bunny? section.
The id value on each of the .main-section elements and the header text inside needs to be the same. Like what you have for the first section (how to take care of a bunny).
You can’t have the last unfinished .main-section section (bunny_are_also) because the test will look at it and not find a header element.
To make this process simpler and easier to keep track of, I would suggest using the same text.
Example for the first link and section:
<li><a class="nav-link" href="#is_a_bunny_right_for_me?">Is a bunny right for me?</a></li>
<section class="main-section" id="is_a_bunny_right_for_me?">
<header>Is a bunny right for me?</header>
...rest of content
</section>