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

HTML How to Make a Website Responsive Web Design and Testing Write CSS Media Queries

shane smales
shane smales
1,933 Points

media queries

stage 8 code challenge, when i check my work when i include the media query to change the colour of the background it says incorrect but it works in the preview

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Shane,

There could be a small typo or a space in the wrong place that will allow the code to work, but if it isn't exactly what the challenge is expecting it won't pass.

Could you please post your css so we can take a look and help you out.
Here is a link to explain how to use Markdown to post your code How to post code

If you look at the bottom of the box when your typing a reply you will see Markdown Cheatsheet that will also explain how to post your code.

shane smales
shane smales
1,933 Points
a {
  text-decoration: none;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}

#logo {
  text-align: center;
  margin: 0;
}

@media screen and (min-width: 480px){

    body{
        background:navy;
    }

}


h1, h2 {
  color: #fff;
}

nav a {
  color: #fff;
}

nav a:hover {
  color: #32673f;
}

h1 {
  font-family: Changa One, sans-serif;
  font-size: 1.75em;
  font-weight: normal;
}

img {
  max-width: 100%;
}

#gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

#gallery li {
  float: left;
  width: 45%;
  margin: 2.5%;
  background-color: #f5f5f5;
  color: #bdc3c7;
}

nav ul {
  list-style: none;
  margin: 0 10px;
  padding: 0;
}

nav li {
  display: inline-block;
}

nav a {
  font-weight: 800;
  padding: 15px 10px;
}

.profile-photo {
  display: block;
  margin: 0 auto 30px;
      max-width: 150px;
  border-radius: 100%;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
}

.contact-info a {
  display: block;
  min-height: 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 0 0 0 30px;
  margin: 0 0 10px;
}

1 Answer

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Shane,

I added a space between and(min-width: 480px){ but i don't think thats the problem, but maybe.

If the instruction is to use a media query to set the background colour then you might have to use background-color: navy;

See how that goes and let me know please.

shane smales
shane smales
1,933 Points

Hi Wayne,

thanks ever so much, it seems like that space seemed to do the trick :)