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

Since I added the main.css file and started trying to target things the changes aren't being shown in the browser

My css rules aren't changing anything in my index.html file despite me linking to main.css underneath the link to normalize.css. I have main.css located in the css file and this is on the same level as index.html. I have no idea why my changes have stopped working?

snapshot: https://w.trhou.se/zdlvb7z88p

2 Answers

you have used  

href="ccs/main.css">

it should  be 

href="css/main.css">

you need to change the path from ccs to css. Like above.

Thank you Pranay!

Thanks guys - looked at too much code today and totally didn't see that!