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

Development Tools

Aaron Wise
Aaron Wise
7,517 Points

I can't get past the challenge question, I have sans-serif as my backup font, what am I doing wrong?

body {
  font-family: 'Raleway' , 'sans-serif';
}

 #wrapper {
   max-width: 940px;
   margin: 0 auto;
   padding: 0 5%;
}
a {
  text-decoration: none;
}

#logo {
 text-align: center;
  margin: 0; 
}

h1 {
  font-family: 'Raleway', 'Sans-Serif';
  margin: 15px 0;
  font-size: 1.75em;
  font-weight: normal;
  line-height: 0.8em;
}

h2 {
  font-size: 0.75em;
  margin: -5px 0 0;
  font-weight: nromal;
}
a {
  color: #6ab47b 
}

header {
  background: #6ab47b;
  border-color: #599a68;
}

h1, h2 {
  color: #fff;
}

nav {
  background: #599a66;
}
nav a, nav a:visited {
  color: #fff;
}

nav a.selected, nav a:hover {
  color: #32673f;
}

body {
  background-color: #fff;
  color: #999;
}

nav {
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0;
}

footer{
  font-size: 0.75em;
  text-align:

I can't really see it atm, but a best practice to do is putting every statement on a new line.

for example:

h1 {
 font-family: 'Raleway', 'Sans-Serif'; 
margin: 15px 0; 
font-size: 1.75em; 
font-weight: normal; 
line-height: 0.8em; 
}

this increases readability

!! My bad, the page didn't load properly !!

2 Answers

There is a typo in the h2

here's what you typed:

h2 {
  font-size: 0.75em;
  margin: -5px 0 0;
  font-weight: nromal;
}

set the "nromal" to normal and i think it should work :)

Aaron Wise
Aaron Wise
7,517 Points

THANKS! Looks like I need to do a better job of scrutinizing what I'm typing!

Tommy Gebru
Tommy Gebru
30,164 Points

Hey Aaron,

What is your specific question? Or the Challenge, please provide more information and/ or a link.

At a glance your footer rule is not closed, And h2 rule has font-weight set to nromal

Is there an Error or Bummer message on the coding challenge?