Problem passing Portfolio tests

Hi!

I have built my personal portfoio page as the final part of the Responsive Web Design certificate. I am having troubles passing these two tests:

#Content
4. The projects section should contain at least one element with a class of “project-tile” to hold a project.

#Layout
3. The navbar should always be at the top of the viewport.

I do not understand why, because I think I do have a class of “project-title” and I do have the navbar always at the top.

Could someone give me a hint how to fix this?

This is the link to my portfolio page: Portfolio

Thank you very much! :slight_smile:

If you look at the error #content, it says project-tile ( Maybe they missed the letter t there ), do as the error says, change your project-title to project-tile

For #layout, the fixed property should be applied to the <nav>, move the position:fixed properties from .nav-container to #navbar,

And don’t forget to add top:0 to make it fit at the top,

You can have the flexbox properties in the .nav-container itself.

1 Like