Hi,
I need to be able to reduce the default space between a bullet and the text that follows it. After searching all and sundry, I came up with the following CSS, that unfortunately does not work in FireFox:
My UL tag looks like this:
My CSS looks like this:
(All those paddings were to get additional left margins in IE because I was able to get the bullets there, and so the text needs to move right. Only IE reads those rogue characters - _ for IE 6 and # for IE 7.)
Does anyone know how to get this to work in FireFox? Or any alternate solution? Thank you very much for your time!
I need to be able to reduce the default space between a bullet and the text that follows it. After searching all and sundry, I came up with the following CSS, that unfortunately does not work in FireFox:
My UL tag looks like this:
Code:
<UL STYLE=\"padding: 0; margin: 2 0 0 0\">
Code:
ul li {
list-style-type: none;
padding: 2 0 0 0;
_padding: 2 0 0 10;
#padding: 2 0 0 10;
background: url(/imgs/common/tiny_bullet.gif) no-repeat 0 7px 0 0;
}
Does anyone know how to get this to work in FireFox? Or any alternate solution? Thank you very much for your time!
Comment