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

Jason Nelson
6,209 PointsCss folders issues, possibly paths?
I'm on the beginner code of css and Nick mentioned a easy way to determine if your css and folders are nested correctly. Basically change the background to one color. I tried the easy coding example and of course my background didn't change.
My css folder is nested in my documents, in the css folder is normalize, and main.css. I knew I had a problem with my path when I tried doing my styling the footer green and no change change appeared.
This is super simple question which I should understand, but somewhere my paths are screwed. I'm on win7 ultimate and I've always had problems with limited paths and limitations.
Can anyone help me out.
Thanks,
2 Answers

Jason Nelson
6,209 PointsNot sure how to snapshot, but the code I used on main. css
<link rel="stylesheet" href="css/main. css"> typed this under normalize. css
body { background-color: orange; }
I probably should figure out the snapshot because that's most likely the problem.

Juan Jose Cortes Guzman
7,894 PointsSorry by snapshot i mean a screen capture.

Jason Nelson
6,209 PointsThe hell my code doesn't show???

Juan Jose Cortes Guzman
7,894 PointsNo, no that code, the link rel="" etc... code, normalize should be put it first, then main.css. Remember they are examined in cascade, so the last code declaration overrides the earlier code (of course there some other issues) but it's probably because main.css is before normalize.css. That's me best guess. I hope it helps.
Juan Jose Cortes Guzman
7,894 PointsJuan Jose Cortes Guzman
7,894 PointsHi Jason, can you show us a snapshot of your folder structure and the code you use to add the css files in the webpage?