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 trialnl9
1,478 Pointsadjusting size of social icons.
Hi; Im working on reducing the size of the Facebook and twitter logos in the footer, and i ran across a problem. I put in the same code as the video, but it won't change the size. P.S. side point, anyone know why theres a period before the ".social-icon?" he put one in the tutorial... heres the code, Thanks.
.social-icon {
width: 20px;
height: 20px;
margin: 0 5px;
}
2 Answers
Wayne Priestley
19,579 PointsHi Nosson,
The period is there because social-icon
is a class name.
If you look in the html it will look something like this:
<div class="social-icon">
The period denotes a class
in the same way #
denotes an id
Hope this helps.
nl9
1,478 PointsThanks,