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 trial

CSS How to Make a Website Responsive Web Design and Testing Adding Breakpoints for Devices

Kenneth Simpson
Kenneth Simpson
1,162 Points

responsive.css not working at all.

I have typed in every bit of code the exact same as the instructor in this video. For some reason my responsive.css is not responsive at all.

Colin Marshall
Colin Marshall
32,861 Points

Hey Kenneth, You're going to need to include your code here for us to be able to help you. Visit the link on the right "Tips for asking questions" for instructions on how to post code on the forum.

1 Answer

Hi Kenneth Simpson,

In order to help you more accurately try to include the code you wrote. Just wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

Now, most of the problems with CSS files not loading have to do with the link to that particular file being broken. Make sure you are linking the stylesheet on your HTML file. It would look something like this:

<head>
 <link rel="stylesheet" href="css/your_file_goes_here.css">
</head>

Also make sure the the CSS file is actually where your link it's pointing to, in this case inside the CSS folder.

I hope it helps.