Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Isaiah Wojciechowski
3,163 PointsCSS Validator Error on line 39
this is the error that pops up line: 39 h1 Value Error : margin , is an incorrect operator : 15px,0
h1 {
font-family: 'Changa One', sans-serif;
margin: 15px, 0;
font-size: 1.75em;
font-weight: normal;
line-height: 0.8em;
}
1 Answer

Marcus Parsons
15,718 PointsHi Isaiah,
There shouldn't be a comma in between those values in the margin
rule, only a space:
h1 {
font-family: 'Changa One', sans-serif;
/* changed , to space */
margin: 15px 0;
font-size: 1.75em;
font-weight: normal;
line-height: 0.8em;
}
Isaiah Wojciechowski
3,163 PointsIsaiah Wojciechowski
3,163 Pointsthank you!!
i knew it was something small that i should notice right away but i just couldn't find it
my code is all validated thanks to you Marcus
Marcus Parsons
15,718 PointsMarcus Parsons
15,718 PointsExcellent! I'm glad to hear it. Happy Coding, Isaiah! :)