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 trialRobert Little
2,828 Points<link rel="stylesheet" href="css/responsive.css"> I have applied the code to the html files but only contact turns navy.
I have placed the code in all the html files and have checked over and over again that they match the display in the video. When I launch the site the css is only applied to the contact page. the other pages do not turn navy when the browser window is resized.
5 Answers
Mitchell Etter
8,603 PointsDid you make sure to save the file after you pasted in the link? Sometimes I forget to do that when I'm following along with the videos.
Mario Mitchell
18,789 PointsHi, can you post your code?
Robert Little
2,828 Pointsresponsive css ...
@media screen and (min-width: 480px) { body { background: navy; } }
index.html ...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/responsive.css"> </head> <body> <header>
contact.html ...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/responsive.css"> </head> <body> <header>
about html ...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/responsive.css"> </head> <body> <header>
Robert Little
2,828 PointsNot sure if the code is displaying properly in the forum window ...
Mario Mitchell
18,789 PointsYes make sure the other two files are saved and also make sure they are linking to the stylesheet.
You can test it by placing the media query directly in the file since the code is working on index.html
Robert Little
2,828 PointsSoooo easy. grrrr.
Thank you for the help.
:)