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!
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

Alex Greig
Courses Plus Student 966 PointsBuild a Simple Website>Styling Content>Fonts and Colors: test
I've got to 4/4 and I keep entering these options and none let me progress? What am I doing wrong.?
Question is: Add the background texture.png from inside the img folder and set the background to repeat.
My answers are:
body { font-family: 'Nunito', sans-serif; color: #FAF3BC; background: #420600 url('img/backgroundtexture.png') repeat; }
body { font-family: 'Nunito', sans-serif; color: #FAF3BC; background: #420600 url('img/background-texture.png') repeat; }
body { font-family: 'Nunito', sans-serif; color: #FAF3BC; background: #420600 url('img/background_texture.png') repeat; }
2 Answers

Mike Gabriel
8,402 PointsHey Alex,
Looks like you're just reading the question wrong. The file name it is requesting is just texture.png
inside of the img
folder.
Add the background texture.png from inside the img folder and set the background to repeat.
body { font-family: 'Nunito', sans-serif; color: #FAF3BC; background: #420600 url('img/texture.png') repeat; }

Alex Greig
Courses Plus Student 966 PointsBooya! I was reading it wrong. Thanks Mike. I was too wrapped up in what the tutorial was using as the example name, which was called bg-texture.jpg. So I assumed it was background texture.png, not just texture.png