Build a Product Landing Page - Stuck

The lack of clear instruction and references just frustrate me to NO END. having worked on this code for weeks, I’m dumbfounded and can’t find understand why my Form won’t show in my header like the sample page. No mentor, no oversight…little logic. :frowning:

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36.

Link to the challenge:

Your form is below the header. You need to give the section “hero” a top padding to move the form down and show it under the navbar.

#hero {
  padding-top: 75px;
}

Also, pay close attention to your tags. Whevener you open a tag, make sure to close it in the right place and only once.

2 Likes