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 Add Iconography

Having trouble getting icons adjusted. What am I missing here?

2 Answers

Hello Alan,

I noticed a few typos you made that might be the reason it isn't working properly.

In your css I saw that you got:

.conact-info a {
 display: block;
  min-height:20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 0 0 0 30px;
  margin: 0 0 10px;
}

Where it should be contact-info.

In the html I saw this:

 <section id="secodary">
         <ul class="contact-info">
          <li class= "phone"><a href="tel:555-1234">Call me.</a></li>
           <li class="mail"><a href="mailto:sea.alan@gmail.com">E-mail me.</a></li>
           <li class="twitter"><a href="https:twitter.com/intent/tweet?screen_name/ajsea">Tweet me.</a></li>
          </ul>
</section>

Where secodary should be secondary and you have a space at your phone class, I hope this helps and if it still isn't working properly make sure you don't have any other typos. Good luck!

Thanks so much. Pesky typos--like a needle a haystack,,,,

Typos are a common thing, and quite the problem to notice sometimes, I hope everything works fine for you now. :)