diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/lock-an-element-to-the-browser-window-with-fixed-positioning.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/lock-an-element-to-the-browser-window-with-fixed-positioning.english.md
index c9b7000096..012e7d41fd 100644
--- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/lock-an-element-to-the-browser-window-with-fixed-positioning.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/lock-an-element-to-the-browser-window-with-fixed-positioning.english.md
@@ -14,7 +14,7 @@ One key difference between the fixed
and absolute
posi
## Instructions
-The navigation bar in the code is labeled with an id of navbar
. Change its position
to fixed
, and offset it 0 pixels from the top
and 0 pixels from the left
. Notice the (lack of) impact to the h1
position, it hasn't been pushed down to accommodate the navigation bar and would need to be adjusted separately.
+The navigation bar in the code is labeled with an id of navbar
. Change its position
to fixed
, and offset it 0 pixels from the top
and 0 pixels from the left
. After you have added the code, scroll the preview window to see how the navigation stays in place.
## Tests
@@ -40,6 +40,9 @@ tests:
```html