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 CSS Foundations Text, Fonts, and Lists List Styles

Removing the Markers

The first code challenge quiz is stumping me for some reason. It seems like the code below would remove the markers. Why isn't it?

Question: Remove the list item markers in the ul.

Answer:

ul li {
  list-style-type: none;
}

Did You try just ```ul { list-style-type:none; }

(without li)? Your css selector might be wrong...

Hi Vladimir, that worked. Thanks! In a previous lesson I swear i had to clarify li but maybe I'm wrong.

Thanks Again! Eric

2 Answers

Hi Eric,

You need to apply the style to the ul rather than the li.

Hope that helps

-Rich

Just delete li xd

Lol yeah , that what they said ; p i read it but i didn't think. Although my worked too : p