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

Nuri Amari
Nuri Amari
8,212 Points

Applying A Background Image In CSS Doesn't Work

I am trying to apply a background from subtlepatterns.com, but the background just becomes white.

header {

    width: 100%;
    background: url("img/crossword.png");
}

2 Answers

Devin Cooper
Devin Cooper
8,352 Points

Hello Nuri,

Can you post your fixed code so others who run into the same problem can see how to resolve it?

Nuri Amari
Nuri Amari
8,212 Points

I realized that because my CSS was in a folder I had to reference the images like this:

background:url("../img/picture.png");

rather than:

background:url("img/picture.png");