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

HTML How to Make a Website Adding Pages to a Website Style New Pages

Noticing two CSS changes that I did not see in the video?

I can see that the social icons have been made small and the h2 has been spaced out differently than I currently have. I can't tell if I somehow missed this in a lesson or it hasn't happened at this stage in the lesson? I am currently on the creating an about page step.

2 Answers

Hunter G
Hunter G
6,612 Points

Hey there Doug!

So by reviewing this video for you, I am thinking you may have missed the step (you can see it in the video at the very beginning at 0:04) in a previous video where he inputted the following to class change to the social media icons in main.css under the footer changes.

.social-icon
  {
    width: 20px;
    height: 20px;
    margin: 0 5px;
  }

Also, from what I am seeing in this video, he has already included the following changes to h2 underneath the heading changes.

h2
  {
    font-size: 0.75em;
    margin: -5px 0 0;
    font-weight: normal;
  }

be sure to review all of the previous sections to make sure you have not accidentally skipped an important video! This had actually happened to me when I first did this course. Lol. Also, reviewing is very helpful anyways! :)

Huh, no idea how I missed that but you're definitely right. Thanks!