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! While you're at it, check out some resources Treehouse students have shared here.

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

CSS Build a Simple Website Styling Content Finishing the CSS

Rafi Chaudhury
Rafi Chaudhury
4,445 Points

Task 2 of 4:Oops! Task one is no longer passing

Hi,

I am trying to add padding of 10px to the top and bottom of the #copyright element on the Smell's Like Bakin' page.

I correctly applied an 8px border to complete Task One. After typing in the padding for Task 2, I get an error telling me "Task One is no longer passing". Here is my code:

copyright {

border-top: 8px solid #2A0400; padding: 10px 0px; }

Wondering if this is a Treehouse error as this is what the CSS looks like in the downloadable zip file for this video.

3 Answers

Hi Rafi,

Try removing px from after the '0' so it reads...

#copyright {
border-top: 8px solid #2A0400;
padding: 10px 0;
}

That works for me - hope it helps! :)