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!
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

Jonah Butler
1,315 PointsCentering Links/Images on Contacts Page
I'm wanting to shift my contact page information and images to the center of the screen. I changed the margin on my .contact-info class, and everything was good. Now that I am resizing my window, I notice that both the text and images slip off the right of the screen when it is shrunk well enough.
I've found that adding a max-width does not make these links responsive. Could anyone share some insight into this?
.contact-info {
list-style: none;
padding: 0;
margin: 0 0 0 360px;;
font-size: 0.9em;
}
.contact-info a {
display: inline-block;
min-height: 20px;
background-repeat: no-repeat;
background-size: 20px 20px;
padding: 0 0 0 30px;;
margin: 0 10px;
}
.contact-info li.phone a {
background-image: url('../img/phone.png');
}
.contact-info li.mail a {
background-image: url('../img/mail.png');
}