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 trialsean montgomery
1,969 PointsContact images and normalize.css
First, by mistake when creating the contact.html folder I accidentally managed to delete the normalize.css and I don't know how to get it back.
Second, none of my contact images are showing up, nor are the styling changes we made to them. here is the snapshot of what I have currently.
Can anyone see where I need to make changes? Let me know if the snapshot doesn't work, it is my first time using it
2 Answers
Bogdan Cabaj
16,349 PointsI found your problem with missing icons.
1. HTML
<ul class="contact-info"></ul> . Currently you have an ul with no content and li tags with no ul tag surrounding li.
Move closing ul to the end of last li
2. CSS
contact-info a is missing a period (.) in front of it. In this case it thinks its is looking at a tag named contact-info instead of class contact- info.
.contact-info a
.contact-info a {
display: block;
min-height: 20px;
background-repeat:no-repeat;
background-size: 20px 20px;
padding: 0 0 0 30px;
margin: 0 0 10px;
}
sean montgomery
1,969 PointsAwesome, thank you Bogdan
sean montgomery
1,969 PointsBogdan, what do you mean that I am 'missing responsive'? Do I need to copy/paste that into my CSS? Thank you for your quick response
Bogdan Cabaj
16,349 PointsHi Sean,
Never mind about resposive.css. I believe you will be adding it later in the course.
I looked at the icons not displaying but I'm having a hard time figuring out why they are not showing up.
Bogdan Cabaj
16,349 PointsBogdan Cabaj
16,349 PointsHere's your normalize.