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 trialhighpriestess
5,486 Pointscode challenge: "...create a new media query that sets the width of .wrap to 700px if the viewport is 800px or wider."
Here's what is not passing:
```@media screen and (min-width: 800px) { .wrap { width: 700px; } }
I'm stumped. It keeps telling me to check the width.
10 Answers
Salman Akram
Courses Plus Student 40,065 PointsNo problem, I see now. I find second missing bracket under 480px, see below
@media screen and (max-width: 480px) {
body { background: #4682B4;
}
} /* missing */
highpriestess
5,486 PointsContacted support directly.
Salman Akram
Courses Plus Student 40,065 PointsIt must be bug. What we can do is refresh browser and try again which will work.
@media screen and (min-width: 800px) { .wrap { width: 700px; } }
highpriestess
5,486 PointsI signed out and back in again...and it's still not working.
highpriestess
5,486 PointsHow do you attach a screen shot to this?
Salman Akram
Courses Plus Student 40,065 PointsHi High Priestess,
You can use syntax by pasting new image link under brackets below.
![alt text](https://image.jpg)
More details at this link
highpriestess
5,486 PointsBest place to upload the image to?
Salman Akram
Courses Plus Student 40,065 PointsFree Image uploading services list below:
TinyPic - http://tinypic.com/ (free - recommendation)
ImageStack - https://imageshack.com/ (used to be free, no longer now)
Imgur - http://imgur.com/
PhotoBucket - http://photobucket.com
Whatever you can find free services rather than paid services on google search. :)
highpriestess
5,486 PointsThank you, Salman...
It worked.
How strange that I kept doing that....and I refreshed and tried it several times.