-
Lists and margins
I have a list of elements that are displayed (surprisingly) as a list:
Code:
<li id="foldheader"><a href="Administration">Administration</a></li>
<ul id="foldinglist" style="display:none" style=&{head};>
<li><a href="Administration/URL1">Something1</a></li>
<li><a href="Administration/URL2">Something2</a></li>
</ul>
How can I make the tab that it inserts before the list items smaller? When displayed the indent for the list item(s) is a bit big.
Thanks
HD
-
try turning the margin off using css.
Code:
<li style="margin:0;">item</li>
You can also do this by using a class for the entire document.
Code:
<style type="text/css">
li {margin:0;}
</style>