I have no idea what I’m doing wrong. Can’t pass test 7 on Personal Portfolio.
CodePen
Thanks in advance!
I have no idea what I’m doing wrong. Can’t pass test 7 on Personal Portfolio.
CodePen
Thanks in advance!
The reason it is not passing is since there isn’t much content on your portfolio, everything fits into the screen at once, which means that clicking the navbar links doesn’t actually scroll you down.
You should add some more content to fix this issue. Or alternatively, you can make your browser screen’s height really short, and then run the tests. You will see that in that case, you can pass 9 out of the 12 requirements, which leaves the following errors:
## 1. My portfolio should have at least one media query
## 2. The height of the welcome section should be equal to the height of the viewport.
## 3. The navbar should always be at the top of the viewport.
Exactly what @onurbal101. You should properly tackle - **User Story #10:** The height of the welcome section should be equal to the height of the viewport.
Once you attend to that, test #7 should be good
Yeah, that makes sense, thank you!