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 trialJerel Wright
Courses Plus Student 1,132 PointsI can't get my bullets to go away from my ul and the images aren't showing next to the phone,email, etc
4 Answers
Garrett Darnell
18,751 PointsThe problem is with your markup, not your CSS. Your <li>
tags are not inside your <ul>
tags.
Specifically, the </ul>
on line 31 of your contact.html should move down to line 34/35, to wrap your <li>
tags.
Once you fix that, you'll see the images, but you'll need to add some CSS to the <a>
tags in order to correctly align the background images. Good luck!
leefaragher
Python Development Techdegree Student 18,868 Pointshave you set text-decoration:none in your css for the <ul>
Jerel Wright
Courses Plus Student 1,132 PointsYes
a{ text-decoration: none; }
is up under the general page setting of my css
leefaragher
Python Development Techdegree Student 18,868 PointsWhich section are you on? I will have a look
Jerel Wright
Courses Plus Student 1,132 PointsI'm on the section where we are taking the bullets from the unordered list attached to the phone number, email, and twitter items on the contact page.
leefaragher
Python Development Techdegree Student 18,868 PointsI'm still learning, try a ul {text-decoration:none;}
i'm going to sleep now, good luck
leefaragher
Python Development Techdegree Student 18,868 Pointsor try: a {list-style-type:none;}