I want to shorten the indent for a bullet and could do the following except it requires access to the style sheet, which I don't believe I have access to:
IN A CASCADING STYLE SHEET:
ul.noIndent {
margin-left: .5em;
padding-left: .5em;
}
IN YOUR HTML:
<ul class="noIndent">
<li>Item 1</li>
<li>Item 2</li>
</ul>
Can I access the style sheets or how can I solve this problem?
Thanks...Chris

Reply With Quote
