>> In your first example, you're applying the style to
>> the <li> tags. In
>> your second example, you're applying it to the <ul>
>> tag. Try this:
>>
>> <ul class="smalltext">
>> <li class="leftindentlist">•The first line.</li>
>> <li class="leftindentlist">•The second line.</li>
>> <li class="leftindentlist">•The third line.</li>
>> <li class="leftindentlist">•The fourth line.</li>
>> </ul>
>>
>> HTH,
>> Justin Myers
>> [EMAIL PROTECTED]

Try this:

<ul class="smalltest leftindentlist">
        <li>•The first line.</li>
        <li>•The first line.</li>
        <li>•The first line.</li>
</ul>

Style:

.leftindentlist {
        list-style: none;
        margin: -3px 0 0 35px;
        padding: 0px;
}

.leftindentlist li {
        padding: 0px;
        margin: 0px;
}

Note: Different browsers(IE) apply padding and margins differently than  
others (everyone else).  So just for good measure you will probably want  
to zero out the li as well.

Nick

-- 
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to