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

Really need help with the css change on the page?

What happened was, my main.css file in workspaces had somehow moved to the img folder by mistake a while ago. I noticed it and put it back into the css folder. However, now the sites css has been completely wiped out and gone back a few lessons ago. How do I fix this? It should be almost complete rather than looking like this. Aren't the paths still correct though?

http://web-yz608u045m.treehouse-app.com/

1 Answer

If you put your main.css under your css folder, you would need to change this code:

<link rel="stylesheet" href="main.css">

to this:

<link rel="stylesheet" href="css/main.css">

Thank you so much! I spend so much time and didn't even realize that I had changed the entire path. Thanks again!