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

I 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

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

have you set text-decoration:none in your css for the <ul>

Yes

a{ text-decoration: none; }

is up under the general page setting of my css

Which section are you on? I will have a look

I'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.

I'm still learning, try a ul {text-decoration:none;}

i'm going to sleep now, good luck

or try: a {list-style-type:none;}