Product Landing Page - test issues

Tell us what’s happening:
Creating Product Landing page and so far all looks good, but in Testing the page there is two things that cant pass the test…
Media query and Flex-box, and both cant pass test when tested on my PC.
When i fork it on codepen.io and test the page there ,than i have only one test failure -> “The navbar should always be at the top of the viewport.”
Of course they are all there in files just not recognized.

Your code so far - link to codepen

Hello Predrag.

In general, for the navbar to be at the top of the viewport, you would expect to see position: fixed; somewhere in the CSS. You do not have anything fixing the navbar.

If you add it in, it will pass the tests. Hope this helps.

1 Like

I was thinking that positioned nav as in normal element flow would be enough.

Did help , thx a lot!