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

Oscar Smart
2,987 Pointsbackground-image
.home { color: red; width: 200px; margin: auto; background-image: ulr(../Mom & Dad-website/Images/Blue 2.jpg) }
I am trying to add a background-image to paragraph text. The folder is located outside css folder in Mom & Dad-website folder, so don't know what the problem is. I can also upload the image when I do it in my html index page, using the same path as above.
2 Answers

Michael Hulet
47,909 PointsTry this:
.home{
color: red;
width: 200px;
margin: auto;
/* You misspelled URL here, forgot the semicolon at the end, and I think you need to escape your spaces with a \ */
background-image: url(../Mom\ &\ Dad-website/Images/Blue 2.jpg);
}

Adam Tatusko
16,589 PointsYou misspelled "url" as "ulr". :-)