Quote:
Originally Posted by increase
I am using bullet point images and used
<img src="../Images/Bullet_point_blue.png" width="20" height="20" align="text-top" style="font-size: 1em; text-indent: 0em;"/>
But Sigil does not like the align, how can I wrap the text after the bullet image so that is is centered properly?
|
You are employing a completly wrong code. You should use the css property "list-style-image". For example:
Code:
ul {
list-style-image: url("../Images/Bullet_point_blue.png");
}
Try that.
Regards