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 trialclaudius mainja
9,661 Pointsi have tried to link my html page with the css but why is it not removing the bullets ,they are still showing
i have tried to link my html page with the css but why is it not removing the bullets ,they are still showing , i did try it again and again . and is it possible to add the new file folder and how also when using the brackets
Marcelo Pinto
10,198 PointsHi Claudius,
Could you copy and paste both your HTML and CSS on your post?
In the HTML file, please paste the <link> element that makes the reference to your CSS file. In the CSS file, paste the rule that styles your unordered list, like "list-style-type". Hint: the value of this property should be set to "none".
Thanks.
2 Answers
savan patel
2,272 Pointssimply use this code below to remove bullets list
ol,ul{ list-style:none; }
thank you!
Ismael Ramirez
3,627 Pointsnone of the answers work people
Alberto Martinez Pascual
6,714 PointsAlberto Martinez Pascual
6,714 PointsHello, could you also post the <link> tag, perhaps is the src attribute wrong?