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 trialScott Thomas
2,164 PointsCan't touch footer images with CSS
For some reason, my CSS for the footer img size isn't affecting the size....
<footer>
<a href="http://twitter.com/scottathomas"><img src="img/twitter-wrap.png" alt="Twitter logo" class="social-icon" /></a>
<a href="http://facebook.com/scott.thomas2"><img src="img/facebook-wrap.png" alt="Facebook logo" class="social-icon" /></a>
<p>© 2016. This is where my stinky feet are! </p>
</footer>
footer img.social-icon
width:20px;
height:20px;
margin:0 5px;
}
I have tried just using .social-icon, and many other variations in the stylesheet. Nothing.
1 Answer
Greg Kaleka
39,021 PointsHi Scott,
You're just missing the open curly brace for your CSS rule. Should look like:
footer img.social-icon {
width:20px;
height:20px;
margin:0 5px;
}
Scott Thomas
2,164 PointsScott Thomas
2,164 PointsThanks Greg. I just pasted the css into Dreamweaver and noticed this immediately.