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 trialAmando Aguayo
648 PointsWhy do I still have bullets next to my images?
I linked my normalize.css to my index.html. I previewed the outcome and everything look fine, except I am still have bullet points next to my images.
6 Answers
lovell
7,882 PointsAmando,
If you are following the TREEHOUSE course then it'll probably be this:
http://codepen.io/anon/pen/yFKxt
Hope it helps. Good luck :-)
GURJAP SINGH
7,556 Pointshi! Amando Aguayo
It would have helped if you did paste your code, however as I am not sure which page you are building, but the code below may help you out to build the Gallery Portfolio properties
/*****************************
Gallery: Portfolio
********************************/
#gallery {
margin:0;
padding:0;
list-style:none;
}
#gallery li {
float:left;
width:45%;
margin:2.5%;
background-color:#f5f5f5;
color: #bdc3c7;
}
#gallery li a p {
margin: 0;
padding: 5%;
font-size: 0.75em;
color:#bdc3c7;
}
Don Shipley
19,488 PointsRight click on your site. Check if your normalizes is included in the head. <link href='/styles/normalize.css' rel='stylesheet' type='text/css'>
If so make sure you have the normalize.css inside the correct location.
Amando Aguayo
648 PointsI added the list-style in my css with no luck.
my normalized is in my head correctly, It changing everything else but the bullets on the images.
Jorge Eduardo Garcia Celorio
10,112 PointsSorry, made a mistake,
Add the lyst-style: none inside the ul selector for the imgs.
ul{
list-style:none;
}
Don Shipley
19,488 PointsCheck your html. Your images should be in an ul list. You can do as Jorge Eduardo Garcia Celorio by adding it to your stylesheet.
Don Shipley
19,488 PointsIf you post your code that maybe helpful