Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Julien Arseneau
Full Stack JavaScript Techdegree Student 5,200 PointsWhat is the problem with my code?
It says: ''Since the style sheet is not in a separate folder, make sure you're using 'url()' to set the background image value to 'img/bear.jpg'.''
/* Complete the challenge by writing CSS below */
.wildlife {
background-image: url('img/bear.jpeg');
}
<!DOCTYPE html>
<html>
<head>
<title>Lake Tahoe</title>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="primary-content t-border">
<p class="intro">
Lake Tahoe is one of the most breathtaking attractions located in California. It's home to a number of ski resorts, summer outdoor recreation, and tourist attractions. Snow and skiing are a significant part of the area's reputation.
</p>
<a class="callout" href="#more">Find out more</a>
<div class="wildlife">
<h2>Check out all the Wildlife</h2>
<p>
As spawning season approaches, the fish acquire a humpback and protuberant jaw. After spawning, they die and their carcasses provide a feast for gatherings of <a href="#mink">mink</a>, <a href="#bears">bears</a>, and <a href="#eagles">bald eagles</a>.
</p>
</div><!-- End .wildlife -->
<a class="callout" href="#wildlife">See the Wildlife</a>
</div><!-- End .primary-content -->
</body>
</html>
3 Answers

Jennifer Nordell
Treehouse TeacherHi there, Julien! Check closely what the bummer message is trying to tell you. The url is supposed to hold the path and file name img/bear.jpg
, but yours has img/bear.jpeg
. While this is the same file type, the name must match exactly. Note the difference between jpeg
and jpg
.
Hope this helps!

Julien Arseneau
Full Stack JavaScript Techdegree Student 5,200 PointsOhhhh, Thanks a lot!

Dom Ss
4,339 PointsHello,
and what is wrong about my code then?
.wildlife {
background: url('img/bear.jpg') no-repeat center / cover;
}
it does not accept:
.wildlife {
background: url('./img/bear.jpg') no-repeat center / cover;
}