I'm applying an existing website template to WordPress and the recent posts list is all wrong in IE6 and IE7. If you take a look at http://blog.bestwinebuys.co.nz you'll see that the recent posts are shown as a list with no bullets or numbers. All other browsers show the list correctly but IE6+7 indent the first line leaving the second line of a long recent post title hanging out on the left. Any ideas how to fix this? thanks
Yeah, always use a css reset stylesheet when coding layouts. I personally recommend this one: http://meyerweb.com/eric/tools/css/reset/ It resets all the default behaviors of a browser.
I do that on my projects where I start from scratch but this is just applying an existing design to WordPress so I can't do that
Just define the padding, margins and line-height values of 'ul', 'ol' and 'li' so the browser doesn't use it's own default and they should match just fine.
Also, make sure you define list-positionutside; This can often cause some issues across browsers. This can be defined on the ul elements.