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 trialMathilde Aubert
1,002 Pointsi just tried the first step consisting in changing the background color into blue, i refreshed but nothing happened ?
i did exactly what was said and even tried another color but nothing worked
2 Answers
Jennifer Nordell
Treehouse TeacherHi there, Mathilde Aubert! First, make sure you saved your changes. Then, if it still doesn't change, it probably means that your browser is loading in a cached (old) version of the CSS. Try holding down CTRL (if you're on Windows) or SHIFT (if you're on Mac) when you press the "refresh" button. This should cause the browser to do a "hard refresh", which will load the CSS again with your changes.
Hope this helps!
VICTORIA DENNIS
Full Stack JavaScript Techdegree Student 3,679 PointsI had a similar issue so I held Ctrl+S on the workspace page and then opened another preview. My internet must have great memory...
Casper Codes
31 PointsCasper Codes
31 PointsI figure it out. When you type the word blue, make sure you remove the "#" before the word "blue".
Like this:
.tag { background-color: blue;
Not Like This:
.tag { background-color: #blue;
I hope that helps!