It's the same problem as before, which I resolved here:
http://www.dynamicdrive.com/forums/s...5&postcount=31
Change:
Code:
<link rel="stylesheet" href="example.css" type="text/css"
media="screen">
<link rel="stylesheet" href="example-print.css" type="text/css"
media="print">
<script type="text/javascript">
/* Optional: Temporarily hide the "tabber" class so it does not "flash"
on the page as plain HTML. After tabber runs, the class is changed
to "tabberlive" and it will appear. */
document.write('<style type="text/css">.tabber{display:none;}<\/style>');
</script>
to:
Code:
<link rel="stylesheet" href="example.css" type="text/css"
media="screen">
<link rel="stylesheet" href="example-print.css" type="text/css"
media="print">
<style type="text/css">
.tabbertab.tabbertabhide {
display: block;
position:absolute;
visibility:hidden;
top:-3000px;
left:-3000px;
}
</style>
<script type="text/javascript">
/* Optional: Temporarily hide the "tabber" class so it does not "flash"
on the page as plain HTML. After tabber runs, the class is changed
to "tabberlive" and it will appear. */
document.write('<style type="text/css">.tabber{position:absolute;visibility:hidden;top:-3000px;left:-3000px;}<\/style>');
</script>
Bookmarks