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 trialHeather McMahon
416 PointsBullet points
All of my images have bullet points next to them that do not appear in the demonstration website in the video.
How do I get rid of the bullet points?
Thank you!
H
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHi Heather and Welcome to Treehouse.
In the video, there are bullet points beside each image that was put in (they are just hard to see in the video, but are at the top-left of each image). This is because you are being taught how to use an un-ordered list to included images, but are a few videos away from learning how to make the bullet points disappear.
So for now, those bullets are normal. You will soon learn the CSS used to make them go away. To give you a preview, you will be using list-style
:
ul {
list-style: none;
}
Keep Coding! :)
John Steer-Fowler
Courses Plus Student 11,734 PointsHi Heather,
Can you please post your code so that I can see it?
I am guessing that you may have put your images in a list, hence why you are getting the bullet points.
But without seeing your code I cannot be sure.
Heather McMahon
416 PointsHeather McMahon
416 PointsHi Jason,
You're right! Thanks! H