Hello,
Try to remove the 'returns' out of your unordered lists, bewteen your list item-tags.
So instead of:
<ul> <li>list item 1</li> <li>list item 2</li> <li>list item 3</li> </ul>
try this:
<ul> <li>list item 1</li><li>list item 2</li><li>list item 3</li> </ul>
IE has a problem applying styles to lists, removing the returns in the html solves the problem in my experience.
I viewed the source, and it is putting them all inline like this: <li>list item 1</li><li>list item 2</li><li>list item 3</li>
But, for whatever reason, it's not putting the <ul> tag in there for that.
- jody