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 CSS Foundations Backgrounds and Borders Advanced Backgrounds

Ivan Diaz
Ivan Diaz
1,879 Points

Background Challenge

Challenge task 1 of 1 We have an image file, 'smiley.png', located in the 'img' folder. Add it as an image above the texture background. Set it so that it doesn't repeat, and position it in the top-right corner of the div. Then, add 'img/pencil.png' above the smiley image layer. Set it so that it doesn't repeat, and position it in the bottom-left corner.

My Answer:

.sketch { background: url('img/smiley.png') no-repeat top right, url('img/pencil.png') no-repeat bottom left, url('img/texture.jpg') #EED293; }

I can't understand why it's wrong! Bummer! Check the background image values in your CSS.

Please help.

4 Answers

Janek Rezner
Janek Rezner
12,973 Points

This works 100% so try pencil before smiley and then texture!

.sketch {
     background: 
       url('img/pencil.png') no-repeat left bottom,
       url('img/smiley.png') no-repeat right top,
       url('img/texture.jpg') #EED293;
 }
Janek Rezner
Janek Rezner
12,973 Points
.sketch {
     background: 
       url('img/smiley.png') no-repeat right top,
       url('img/pencil.png') no-repeat left bottom,
       url('img/texture.jpg') #EED293;
 }
Ivan Diaz
Ivan Diaz
1,879 Points

Yann, Thank you for your answer. But I think there is something wrong with the challenge. Because I got the same error message "Bummer! Check the background image values in your CSS." After apply your suggestion.

Now who from the Treehouse will fix it ?

Best Regards From Mexico City

Janek Rezner
Janek Rezner
12,973 Points

hey dude just try to reload it maybe? i tried your code and it didn't work but mine passed.

it deffo needs to be in this order: right top and left bottom !