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

General Discussion

'Bummer Error'

http://teamtreehouse.com/library/build-a-simple-website/styling-content/finishing-the-css

Challenge task 1 of 4 Select the copyright using an ID selector. Give it a solid top border that is 8 pixels thick and has a color of #2A0400.

Here is my code :

copyright {

border: 8px 0 0 0 solid #2A0400;

}

--

I continue to get this message although I am 99.9% sure this is correct answer. I also had a reply from Treehouse saying the code is correct. Below is the error message. I don't see anyplace to attach a screen shot here.

'Bummer! Remember, to select an ID, use the '#' character followed by the ID of the element you want to select.'

Maybe the code engine is not respecting '#'. I have tried in multiple browsers, cleared cache, etc;

Anyone can help to explain what may be going on?

just looked at my post and AGAIN the '#' doesn't appear to be showing up in the code interpreter. Why is this happening?

Hi Eric, take a look at Eric's answer below.

1 Answer

Hi Eric,

The error message sucks! My first code example got the same error message because I left out the word solid, the second example passed.

Jeff

#copyright {
  border-top: 8px #2A0400;
}

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