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

HTML

Styling Content: Fonts and Colors

The last step I am asked to add the background texture.png and make it repeat... What am I doing wrong here?

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

4 Answers

Don't use background-color, use background.

Also you might want to practice writing your css in block formats so its easier to read.

Let me know if that hasn't solved your issue.

Richard

Its super picky I would try

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

You have background color, they might be asking for background.

The only thing I can think of as I haven't done that part of the website is to try and repeat it -x or -y

repeat-x; no repeat-y?

Maybe something like:

background-repeat: repeat-y;

I could be completely wrong though!

Thanks to everyone who responded. My problem was I had "background color" instead of just "background. I keep thinking html coding over css. I appreciate the quick responses =]