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

Fonts and Colors Quiz Question

Hello again. This time I'm having trouble with the quiz for Fonts and Colors, task 4/4. Here is the code I have provided in the stylesheet:

/* Write your CSS below */


body {
  font-family: 'Nunito', sans-serif;
  color: #FAF3BC;
  background: #420600 url('img/background texture.png') repeat;

}

However, it's giving me this error (see screenshot): http://d.pr/i/vpp0

What am I doing wrong? Thanks for your help!

4 Answers

For reference, the instructions:

"Add the background texture.png from inside the img folder and set the background to repeat."

What they are saying is, to add an image named texture.png located in a folder named img as a background, and set that background to repeat.

background: #420600 url('img/texture.png') repeat;

Thanks guys :)

Thanks Lots, Thanks Goodness for forums lol