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

Oscar Smart
Oscar Smart
2,987 Points

background-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
Michael Hulet
47,912 Points

Try 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);
  }

You misspelled "url" as "ulr". :-)