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.

Jared Syrenne
948 Points#wrapper not applying effects
Unable to apply the css effects from this video Was able to change the background to orange like mentioned in last video But #wrapper not working as shown in this video

Jared Syrenne
948 Pointsa {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%;
background: orange;
}
1 Answer

ellie adam
26,376 PointsHi Jared,
You forget to wrap the div id="wrapper" around you content.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%;
background: orange;
}
</style>
</head>
<body>
<div id="wrapper">
<header>
<a href="index.html">
<h1>Jared Syrenne</h1>
<h2>Designer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio </a></li>
<li><a href="about.html">About </a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div>
<section>
<nav>
<ul>
<li>
<a href="Img/numbers-01.jpg">
<img src="Img/numbers-01.jpg" alt="">
<p>Experimentation with color and texture</p>
</a>
</li>
<li>
<a href="Img/numbers-02.jpg">
<img src="Img/numbers-02.jpg" alt="">
<p>Playing with blending modes in Photoshop</p>
</a>
</li>
<li>
<a href="Img/numbers-06.jpg">
<img src="Img/numbers-06.jpg" alt="">
<p>Trying to create a Glow</p>
</a>
</li>
<li>
<a href="Img/numbers-09.jpg">
<img src="Img/numbers-09.jpg" alt="">
<p>Photoshop Brushes</p>
</a>
</li>
<li>
<a href="Img/numbers-12.jpg">
<img src="Img/numbers-12.jpg" alt="">
<p>Blending</p>
</a>
</li>
</ul>
</nav>
</section>
<footer>
<a href="https://twitter.com/jsyrenne"><img src="Img/twitter-wrap.png" alt"Twitter Logo"></a>
<a href="https://www.facebook.com/jared.syrenne"><img src="Img/facebook-wrap.png" alt"Facebook Logo"></a>
<p>©2015 Jared Syrenne</p>
</footer>
</div>
</div>
</body>
</html>
Jared Syrenne
948 PointsJared Syrenne
948 Points