Found my problem; 
 
Here's the trick (after reading MaxDesign 'Taming Lists')
 
1.Mark margin-left and padding-left of both ul and li to 0px
2.Use the ul margin-left to set image position in em
3. Use the li padding-left in em to set the distance between the image and the text
 
.cssRightModuleContent ul{
 margin-top:.25em;
 margin-left:1em;
 padding-left:0px;
 }
 
.cssRightModuleContent li{
 list-style-image : url(/global/res/images/orange_bullet.gif);
 margin-left: 0px;
 padding-left:10em;
 list-style-position : outside;
 }
 
Cheers
 
Graham Cook

Reply via email to