Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Sofronea Gabriel
1,396 Pointsneed help
what i did after the #wrapper does not show up on my page like in the video
1 Answer

Maarten van Wijk
16,320 PointsYou forgot a semicolon after padding rule
#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%
background: red;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%;
background: red;
}