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 trialmalcolm mowlam
3,856 Pointscan anyone please help with challenge task 1 of 2 css basics @media queries
create a media query that sets viewport width of 1020px and then selects .main-header background color tomato and text
/* Complete the challenge by writing CSS below */
@media (max-width: 1020px) { ... .main-header{
background-color: tomato;
text-color: white;
}
<!DOCTYPE html>
<html>
<head>
<title>Lake Tahoe</title>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="top" class="main-header">
<span class="title">Journey Through the Sierra Nevada Mountains</span>
<h1 class="main-heading">Lake Tahoe, California</h1>
</header>
<div class="primary-content">
<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><!-- End .primary-content -->
</body>
</html>
6 Answers
Mark Sebeck
Treehouse Moderator 37,799 PointsI'm not sure why you have the ... at the top of the media query but you don't need it for this challenge.
Also to change text color it's just color:
Everyone has made that mistake before.
malcolm mowlam
3,856 PointsThat helped thanks mark but still getting error message about setting media viewpoint width
Mark Sebeck
Treehouse Moderator 37,799 PointsCan you post your new code? When I ran it without ... and color: white it passed.
malcolm mowlam
3,856 Pointsthank you mark that was a great help and it passed but now stuck on challenge 2 the max width gets an error message so anyway thank you mark
malcolm mowlam
3,856 Points@media (max-width: 1020px) {} .main-header { background-color: tomato; color: white;
Mark Sebeck
Treehouse Moderator 37,799 PointsIs this for task 1? You don't need the {} after the max width but you need to close } at the very end.
@media (max-width: 1020px) {
.main-header {
background-color: tomato;
color: white;
}
Mark Sebeck
Treehouse Moderator 37,799 PointsThen for part 2 just create a new media query for 768px and target the .title class and h1 element and change their font-size
malcolm mowlam
3,856 PointsThanks again Mark living the dream and you're a gentleman
Mark Sebeck
Treehouse Moderator 37,799 PointsYouβre welcome. Donβt give up on css. It can be very frustrating at times.
malcolm mowlam
3,856 PointsThank you Mark you really have helped a lot