I have a list with bullets. I made the bullets smaller by putting the li text inside a span and making the font-size of the li smaller tha
li
span
You could just make your own bullet point and make it whatever size you want.
li{ font-size: 15px; list-style-type:none; } li span{ font-size: 25px; } ul li:before { content: "•"; font-size: 80%; padding-right: 10px; }
Just change around the font-size to the size you want.
font-size
jsFiddle