At first I thought it was because I’d display:none the #navbar for smaller(phone) screen sizes but the error kept displaying even after I corrected my code.
@Babi,when a test fails click the red button to see which test(s) are failing and text to help you correct the issue.
Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
The failing message says;
On regular sized devices (laptops, desktops), the element with id="navbar" should be shown on the left half of the screen. It should always be visible to the user and should remain stationary. You may need to enlarge the viewport or zoom out to ensure the navbar doesn't scroll with the page content.
Top of bounding rectangle is not correct.: expected 451 to be below 300
AssertionError: Top of bounding rectangle is not correct.: expected 451 to be below 300
The related user story says “On regular sized devices (laptops, desktops), the element with id="navbar" should be shown on the left side of the screen and should always be visible to the user.”
On a regular sized device the user has to scroll to see the nav because of the big banner across the top of the page.
On a side note, what is this doing in your code? I’m missing it.