The display of lists in the Internet Explorer and Firefox browsers is so different, that its use in SiteSpinner often interferes with the display of other objects on the page. Using CSS style codes, the display of a list can be "normalized" so that it appears nearly identical in both browsers. The following code is used to have the bullets indent the same amount in both browsers:
<style type="text/css">
ul { margin-top:0; margin-bottom:0; list-style-type:disc; list-style-position:outside; }
</style>
To remove the indent for each list item, add the following to the <style> code:
li { margin:0 0 0 -20px; }