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 Creating HTML Content Add Image Gallery Content

Willie Wilson III
Willie Wilson III
180 Points

Why am I getting bullet points before each picture. I've checked and the code seems to match up?

Bullet point in front of each and every picture.

1 Answer

I am assuming you are using an Unordered list (ul and li tags) to organize your images.

If so, then you need to reset the ul and li tags to remove those CSS styles. You can do so by adding the following to your CSS.

ul, li {
  list-style: none;
}

I hope this helps.

Willie Wilson III
Willie Wilson III
180 Points

still appear to be having issues. I am currently on "Add image gallery content"

can you provide a WorkSpace Snapshot of your code.