You can manipulate the indentation of most HTML elements by using CSS. In this case for example, begin by giving the master <ul> tag that wraps around the entire folding tree a class name, such as:
Code:
<ul class="mytree">
Then, add the below CSS at the top of the page to manipulate the tree's indentation:
Code:
<style type="text/css">
.mytree{
margin-left: 10px;
}
.mytree ul{
margin-left: 20px;
}
</style>
Experiment with the values, though 10 and 20 should decrease the indentation significantly already.
Bookmarks