So I am trying to figure out how I can vertically align some text that I have with a custom bullet image. Here is what I have:
<ul>
<li>LINE OF TEXT</li>
<li>LINE OF TEXT</li>
<li>LINE OF TEXT</li>
</ul>
And for the CSS...
#div .class
{
color: #4c361c;
font-size: 13px;
list-style-image: url(../images/image.png);
}
#div .class li{ }
Does anyone have anyideas on how to go about doing this?
line-height
of the<li>
s. – Gerenuk