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

HTML How to Make a Website Styling Web Pages and Navigation Create a Horizontal List of Links

My footer is not changing. Is my code wrong?

Here is a snap shot of my code https://w.trhou.se/hdej6yprhe

what are you trying to change?

4 Answers

I'm not sure what suppose to change in your footer, but I did notice you have a colon next to you footer element that shouldn't be there.

footer: { .... }

Should be

footer { ... }

hope this helps Shaun

It could be that your main.css is outside of your css folder, too.

In your index.html, it is linked as "css/main.css"

Your main.css is outside the css folder. Your index.html shows the main.css inside the css folder (css/main.css). You need to move the main.css to the css folder.

Awesome, thanks guys, I have fixed it!