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 trialDaniel Holmes
2,765 Pointswhat is the problem
a { text-decoration: none;
#wrapper {
width: 940px;
margin: 0 auto;
}
what is my problem
1 Answer
Maximiliane Quel
Courses Plus Student 55,489 Pointsyou are missing a closing curly brace at the end of your first statement. and wrapper is also an id so you need to start your selector with #:
a { text-decoration: none; }
#wrapper {
width: 940px;
margin: 0 auto;
}
Maximiliane Quel
Courses Plus Student 55,489 Pointsand also the thing about having to use max-width. since, your question is duplicated I have not added the code again. :0)
Kristopher Van Sant
Courses Plus Student 18,830 PointsKristopher Van Sant
Courses Plus Student 18,830 PointsHey there Daniel! I add three back-ticks before your code and three back-ticks after your code, this allows your code to show better here in the forum thanks to Markdown :)