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 trialBrandy Mackey
3,309 PointsPlease help
its asking if I entered the correct code 1.4rem I believe I did
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Brandy,
It's impossible to help you troubleshoot without being able to see your code.
From the challenge you are in, if you click on "Get Help," it should automatically post your code for the challenge.
So I'm going to guess...
The first part of the second challenge wants you to target a viewport with of 768 or narrower, so it is done the same as part one of the challenge. The second part wants you to select .title
class and give it a font-size of 1.4rem and then target the h1 and give it a font-size of 5rem.
It is pretty much the same as task one, with aesthetic differences;
@media (max-width: 768px) {
.title {
font-size: 1.4rem;
}
h1 {
font-size: 5rem;
}
}
Hope this helps! :)
Brandy Mackey
3,309 PointsBrandy Mackey
3,309 PointsI thought I did paste the code but thank you for the accurate guess it helped.