Sebastian Bell:

>What I'm seeing:
>O<--10px of space-->The text...
>
>What I want:
>O<--5px of space-->The text...
>
>O = the bullet 

Oh, I understand. One possible solution could come through negative
margins on a nested span tag:

/* xhtml */
<li><span>text here</span></li>

/* css */
li span
{
        margin-left: -10px;
}

I tested this in Firefox and IE6.
(I also tried adding a negative left-padding value to the list item
selector, as well as using a negative text-indent value, but neither
of there were successful in both browsers.)

Hope this helps
-Justin Reid
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to