Log in

View Full Version : Validation IE and FF



BILLYFISHING
02-08-2012, 01:35 PM
Hi All

I have Validated the code on the following link http://world-fishing-news.com/TABS/tabber/002LIVEFISHINGNEWS.html :D

In both FF and IE however the page works fine in IE but when I test the page using FF the items on the page do not scroll.:mad:

Any help much appreciated do not know what to do next. :mad:

Thanking you in anticipation :):)

Billy
(UK)
The World of Fishing News

jscheuer1
02-08-2012, 05:13 PM
It's the same problem as before, which I resolved here:

http://www.dynamicdrive.com/forums/showpost.php?p=268725&postcount=31

Change:


<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:


<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>