Having a bit of trouble with aligning my list-style-image vertically within the ul li script.
Tried using vertical-align but it's not doing the trick.
Any solutions?
Check out the code on this jsFiddle link
ul {
margin-top: 10px;
padding-left: 50px;
color: #3C4355;
margin-bottom: 6px;
}
li {
margin-left: 20px;
color: #3C4355;
line-height: 20px;
list-style-image: url('http://forum.bizportal.co.il/NewSite/emoticons/smiley9.gif');
}
<ul>
<li>Text 1</li>
<li>Text 2</li>
</ul>