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 Make a Website Customizing Colors and Fonts Add Fonts

Vikram Mudaliar
Vikram Mudaliar
8,593 Points

Not able to pass

a {
  text-decoration: none;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}

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

h1 {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}
h2 {
  color: #fff;
}

nav a {
  color: #fff;
}

nav a:hover {
  color: #32673f;
}

5 Answers

Do you need a # in front of both wrapper and logo? If it is an ID then it is a # but if it is class then it requires a .(period) in front.

Vikram Mudaliar
Vikram Mudaliar
8,593 Points

The Problem is with the font-family in h1 I don't see any issue with the syntax, but I am not able to clear this test

It may be that you need to add a link for the 'Open Sans' stylesheet:

<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>

Once you've inserted this link into your HTML file your CSS should work. :)

At least that's what I had to do.

I hope this helps.

Vikram Mudaliar
Vikram Mudaliar
8,593 Points

Thanks Michael Arends and Bhren Zabriskie Figured out, The workspace was only expecting font-family, I was adding color too. Thanks, for the quick replies :)

Awesome! I'm glad you figured it out. :)