You can adjust the #foldinglist's left margin in the style section, substituting:
Code:
#foldinglist {
list-style-image:url(list.gif);
margin-left:-15px;
}
for:
Code:
#foldinglist{list-style-image:url(list.gif)}
The number 15 is how far to the left it will move in pixels. However, this may vary from browser to browser. If you need a custom setting for IE and a different one for all others, you can use this convention:
Code:
#foldinglist {
list-style-image:url(list.gif);
margin-left:-15px!important;
margin-left:-10px;
}
Bookmarks