I've run into an issue with my bullet list while trying to use an image instead of regular bullets for a class project. The image is not aligning properly with the list and seems to be embedded within the text.
Here's the HTML code I have for this section:
li {
background: url('http://s30.postimg.org/52wxo16t9/bullet_Image.png') 2px 4px no-repeat;
display: list-item;
padding: 3px 3px 3px 20px;
overflow: visible;
list-style: none;
}
<ol>
<li class="planet">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
<li class="planet">Aliquam tincidunt mauris eu risus.</li>
</ol>