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

CSS How to Make a Website CSS: Cascading Style Sheets Use ID Selectors

Rebecca Jasso
Rebecca Jasso
3,243 Points

I'm seeing bullets on my images unordered list, even though they have disappeared for my nav. Wha?

I've checked my code and I can't figure out how to get rid of the bullets left of my images. I believe I've linked to the normalize file correctly, because the bullets have disappeared from my nav. What am I doing wrong?

Have your code that we can look at?

3 Answers

Hi Rebecca,

You should still have bullets on the gallery after linking normalize.css

The version of normalize used in this project only removes bullets from lists within a nav element.

Later Nick will add css to remove the remaining bullets.

Joshua Holland
Joshua Holland
2,865 Points

Your nav and images will be affected separately unless you link them together with an ID (or some other property to link the two together) and add css which effects both via the id.

You need to add CSS which targets your specific image by selecting it and adding the property...

your selector here    {
              list-style: none;
}

that should remove the bullets for you. Keep in mind, if you haven't added main CSS file yet you are going to want to wait till that stage of the lesson to make these changes.

Rebecca Jasso
Rebecca Jasso
3,243 Points

I guess I jumped the gun. I thought when I posted this that Nick didn't have any bullets next to his images, but now I see he still does. Thanks for your help!