Reputation: 577
I have a UL with LI elements inside. I am using a custom list bullet
list-style: url(images/att_remove3.png) outside;
I want to keep the bullet outside because not all the LI elements have bullets.
How do I control the margin between the LI text and the bullet?
Upvotes: 0
Views: 131
Reputation: 813
Have you tried using a negative margin?
ul li { margin-left: -XXpx; }
Upvotes: 1