I'm sorry that this is completely unrelated to Vanilla, but there are lots of people around here who understand CSS. If it's really off-topic, feel free to remove it.
Anyway, here's the problem: I've recently tidied up the main stylesheet on my site, http://www.soul-scape.com/ Now although I'm almost certain I haven't changed anything related to it, the tabbed navigation is playing up in a most peculiar fashion.
In Firefox, everything appears fine. Perfect. However, in IE when you view the contact page, the first tab vanishes. It is still there, because it reappears after a while if you constantly wiggle your mouse around over the tabs and select them (as if you were trying to select the text, by click and drag)
As I said I have no idea why it's doing this. Can anyone shed any light?
looks like some silly render bug to me with IE, in your <a href="..." strings, I notice you have a space before the first closing ">" bracket. While I know it might not seem as much, I have noticed really stupid things occur when IE starts parsing source that's weirdly formatted and tagged. As a result, stupid impossible to locate bugs occur when everything is done. try cleaning up the nav links and see if that fixes it.
You didn't close a link then exited a div... ie doesn't handle mistakes like this elegantly like other browsers... it'll just flip out and kill something....
In this case it counts the end of the /div as inside the a as is everything else until the end of the home link... so they all dissapear into render limbo. (probably hidden somewhere in your style or something)