Oh, I see. Sorry for being so dense. I'd first try getting rid of this:
Code:
* html #slidetabsmenu{ /*IE only. Add 1em spacing between menu and rest of content*/
margin-bottom: 1em;
}
If that doesn't get it, you could (still get rid of the above and) try a supplemental IE conditional style (after the link to the slide styles) like:
HTML Code:
<link href="slide.css" rel="stylesheet" type="text/css">
<!--[if IE]>
<style type="text/css">
#slidetabsmenu { /*IE only.*/
margin-bottom: -1em;
}
</style>
<![endif]-->
You can experiment with that -1em value, decimals allowed (-1.25em). Also, other IE only styles may be introduced in that conditional stylesheet, if desired. It can also be a link to a supplemental IE stylesheet instead:
HTML Code:
<!--[if IE]>
<link href="ie_slide.css" rel="stylesheet" type="text/css">
<![endif]-->
Bookmarks