Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a CSS like this

ul {
    list-style-image:url(images/bulletArrow.gif);
}

ul li {
    background: url(images/hr.gif) no-repeat left bottom;
    padding: 5px 0 7px 0;
}

But the bullet image doesn't align properly in IE (it's fine in Firefox). I already have a background image for li, so I can't use the bullet image as a background. Is there any solution to this?

Thanks in advance.

share|improve this question
Are you able to provide a bit more information? Which version of IE are you using (if it's giving you that much trouble, it's probably IE6)? Are you trying to align the image vertically with the text? What does the image look like? Just a simple horizontal rule? – Phil.Wheeler Nov 10 '08 at 0:34

4 Answers

There is a good explanation and solution of this here: http://css.maxdesign.com.au/listutorial/master.htm

It says that using list-style-image results in inconsistent placement of the image with different browsers. Then it explains how to use background images for the bullets for a better result.

share|improve this answer
Thanks for this! – hoball Feb 16 '11 at 12:44

I see you're removing left padding for list items. For IE, you need to do the same with the left margin - either completely remove it (set to zero) or make it something smaller than the default. Then your list items will align nicely.

share|improve this answer

use line-height :)

share|improve this answer
up vote 1 down vote accepted

Thank you both of you. The problem is that I already use background for a line-separator. But I'll change it to border then I'll use background for the bullet image.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.