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 trialname564681351614
3,497 PointsRemoving 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;
}
name564681351614
3,497 PointsHi 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
Rich Bagley
25,869 PointsHi Eric,
You need to apply the style to the ul rather than the li.
Hope that helps
-Rich
Aurelian Spodarec
7,369 PointsJust delete li xd
Aurelian Spodarec
7,369 PointsLol yeah , that what they said ; p i read it but i didn't think. Although my worked too : p
Vladimir Dumitraskovic
24,195 PointsVladimir Dumitraskovic
24,195 PointsDid You try just ```ul { list-style-type:none; }
(without li)? Your css selector might be wrong...