Personal Portfolio- help please!

I am not passing 2 tests here although I feel like I did them. Can you help me out please?

Hi shimphillip,

Your navbar should have

  position: fixed;
  left: 0;
1 Like

Thank you, that worked. Any idea on on the viewport test?

After awhile i did find the solution!

Try this!

#welcome-section{
  /*height of welcome section should be equal to the height of viewport */
  top: 0;
  height:398px;
}

or run the test and look for this description:
AssertionError: The height of #welcome-section is not equal to the height of the viewport : expected 689 to equal 398

copy the number equal to 398 (or whatever number is there)

then

height: 398px;

Happy coding!

1 Like

Giving it a static height only lets me pass the test temporarily but as soon as the size of the window changes. It’s not passing the test anymore. Thanks for the suggestions, I will keep trying!