Portfolio Page User Story 7

Can someone check out my ?
It is saying my links don’t move page to corresponding section. I am pretty sure I am formatting the links properly though. Also, ignore that there’s no formatting and barely content, I don’t like doing the pretty stuff until I make sure I have everything in place. Thanks!

https://codepen.io/LYDIA-KRAUZ/pen/wvpVPZo?editors=1000My CodePen

You do not have enough content inside the sections (or on the page) for the page to scroll down when the links are clicked. You can test it by adding some CSS that sets a height on the sections.

section {
  height: 100vh;
}

You should also remove target="_blank" from the nav links.

Thank you! I had a suspicion, I should’ve tried that first.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.