The bullets are very ugly so you’ll learn how to change it!
- to

1. Add this code to your CSS
ul {
list-style-image: url('here the link of your bullet');
list-style-position: inside;
padding: 0;
margin: 0;
}
2. In the code where say “here the link of your bullet” write the URL of your new bullet.
Ex. http://i114.photobucket.com/albums/n248/maisa17/oranged.gif
3. So your code have to be like this:
ul {
list-style-image: url('http://i114.photobucket.com/albums/n248/maisa17/oranged.gif');
list-style-position: inside;
padding: 0;
margin: 0;
}
4. And tha’s all. Now you’ll have a nice bullets!

