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 trialManda Szewczyk
2,382 PointsWhere did I go wrong in the 2nd Media Queries Task?
I've been asked to set the h1 font size to 5rem. I submitted:
@media (max-width: 768px) {
.title {
font-size: 1.4rem;
}
.h1 {
font-size: 5rem;
}
}
It says I'm wrong, and then asks if I've specified the correct font size for my h1. I'm not sure where to go from here?
2 Answers
Agnes Demes
6,613 PointsHi, almost ther, but you are selecting the .h1 class instead of the h1 element
Agnes Demes
6,613 PointsMy pleasure, it is so easy to overlook little typos in your own code, sometimes it takes a fresh set of eyes.
Manda Szewczyk
2,382 PointsManda Szewczyk
2,382 PointsOMG! I can't believe I didn't see that LOL! I guess I was on a roll with classes and just kept going! THANK YOU!!!!! I thought I was going crazy...I really appreciate your quick reply :)