I'm on a mission to craft a custom bullet list using ul li tags.
So far, here's what I have:
ul {
list-style: none;
list-style-type: none;
padding: 0px;
margin: 0px;
}
ul li {
background-image: url(img/bullet.png);
background-repeat: no-repeat;
background-position: 0px 5px;
padding-left: 10px;
}
This generates the following output:
o some text
o some other text
o and again some other text
The heading is centered, but I want the bullets to align center as well (right next to the beginning of the text). Text-align didn't provide the desired result.
Any suggestions on how to achieve this?