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 fix the footer color

<style>

footer { color: green; }

</style>

I am following along with the videos in work space... and my code looks exactly the same as shown in the video but the footer is not green, whats wrong here?

Here is a link to explain how to use Markdown to post your code How to post code

If you look at the bottom of the box when your typing a reply you will see Markdown Cheatsheet that will also explain how to post your code.

2 Answers

Are you trying to make the font color green or the background green?

For the background try;

footer { background: green; }

Please post the code in the forum so we can see what the problem is. Generally its just a minor mistake.