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 trialRyan Spence
770 Pointsnot sure whats wrong with the way i'm setting font color
<body style = "font-family: Nunito, Sans-Serif; font-color: #FAF3BC; ">
5 Answers
Jeff Busch
19,287 Pointsbody {
font-family: Nunito, sans-serif;
color: #FAF3BC;
background-color: #420600;
background-image: url("img/texture.png")
}
Rodrigo Soares
2,460 PointsE.g.
body {
color: #666;
}
Jenry Ollivierre
1,987 PointsSometimes our errors are due to missing out one little thing. Make sure you use color and not "font-color". also check to see if your colon was used and semi colon to end the style. make sure the hash symbol is used for hex values.
Thomas Daugherty
23,983 PointsDid you forget to add the message?
Ryan Spence
770 PointsThanks for all the help