Forum Moderators: not2easy
one way!
Here's another: li{line-height:2.0em;}
Adjust to suit your needs. This ought to keep the bullets and text lined up as both will be rendered in the middle of the LI, which will now be as tall as the line-height you've specified. Note that this will cause other problems should your list item text ever wrap to a new line. In such a case, you're better off using margin or padding as suggested above.
in IE the text drops below the bullet
This will probably depend on HOW the image bullet is created. DId you use the list-style-image property, or set the image as a background on the LI? If the latter, you can set the top position of the background property to match the padding and it should move down an equal amount...
li{background-position:10px left;}
If it's the list-style-image property, try using margin instead of padding to create the space and see if that works any better.
cEM