Results 1 to 2 of 2

Thread: Validation IE and FF

  1. #1
    Join Date
    Nov 2011
    Posts
    19
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Angry Validation IE and FF

    Hi All

    I have Validated the code on the following link http://world-fishing-news.com/TABS/t...SHINGNEWS.html

    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.

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

    Thanking you in anticipation

    Billy
    (UK)
    The World of Fishing News

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

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

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •