https://codepen.io/Ashraya/pen/PXEQqp

Need some help with the last step regarding navbar at top of viewport

1 Like

The problem is you are trying to style and position the unordered list of the navbar instead of the navbar itself. It should be the <nav> element that has the id of ‘navbar’, not the unordered list. Then in the css section you can add position: fixed and top:0 to a nav element instead of using them in the nav ul part. It passes all tests after this, though you will still need to adjust it to make it look good.

1 Like

Thank You! Now it is time to make it look better.

1 Like