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
lorieslaughenhaupt
645 PointsWhy are the bullets not being removed?
After adding the link element to normalize css the bullets remain on the preview. I also am having trouble figuring out how to use Markdown to show you to code. So frustrating, not being able to communicate effectively. I'll figure it out thanks in advance for your help.
1 Answer
Jeff Lemay
14,268 PointsThe current normalize does not remove bullets by default. You'll need to add it to your styles.css file (or whatever you call yours)
ul, ol {
list-style: none;
}
For markdown, you use three back ticks (in the upper left of your keyboard next to the 1 key) and follow it with the type of code you are adding. So for html, it would be (without the spaces between each key): ` html. Then you paste in your code and close the block with three more back ticks at the end.
` html
all my code here
`
Jeff Lemay
14,268 PointsIt threw away some of my back ticks when I posted but hopefully that gives you an idea.
lorieslaughenhaupt
645 PointsThank you Jeff, I wondered if that might be it but I haven't looked at a line of code since Windows was DOS. I just started this yesterday and am having more trouble asking questions than reading and writing code. So thank you for telling me were the back tick is.
Sean T. Unwin
28,690 PointsSean T. Unwin
28,690 PointsPlease this thread about posting code to the forum. :)