I looked and couldn't find the solution to my problem. I've created a bullet list in CSS. Looks great in FF but the alignment in IE is off. Is there a way I can fix this? You can see the problem at the following page:
IE uses margin to create the space on the left of a list, where Firefox uses padding. Because you have the margin on the left set to 0, if pushes all the way to the left in IE. You SHOULD be able to fix it by just removing the margin all together:
Code:
.bulletlist1 {
color:#000000;
margin:20px 0px 20px 0px;
text-align:left;
font-size:10pt;
}
and yeah, <span style="color:#123456">text</span>.