Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Travis Christian
19,878 PointsPadding, border, and margin code challenge problems
The code challenge is asking me to set the top padding to 80px and the bottom to 70px, but it keeps telling me I'm doing it wrong. What am I doing wrong? I've tried it two different ways:
div .secondary-content { padding-top: 80px; padding-bottom: 70px; }
and
div .secondary-content { padding: 80px 0px 70px; }
Any ideas where I'm going wrong here?
1 Answer

Adam Mould
5,458 Pointstry removing the space between div and .secondary-content.
div.secondary-content { padding: 80px 0 70px; }
Travis Christian
19,878 PointsTravis Christian
19,878 PointsPerfect. Thank you! So simple but I was stuck on that for over an hour.