Results 1 to 3 of 3

Thread: Ultimate Slideshoe v1.5 Firefox problem

  1. #1
    Join Date
    May 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Ultimate Slideshoe v1.5 Firefox problem

    Hi,

    I'm using the Ultimate Slideshow for a site I'm making, www.themoghul.ca , it works fine in IE however for some reason in Firefox I get only the background color of the slideshow (& no pics).

    Using Firefox's JavaScript Console I see an error message "picobj has no properties", but I don't know why this would be a problem. I mention it because it doesn't come up when loading other folks' sites that use the slideshow script.

    Any ideas?

  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

    On your page, you have it like this:

    HTML Code:
    <table width="300" border="0" align="center" cellpadding="6" cellspacing="0" class="content">
      <tr><script type="text/javascript">new fadeshow(fadeimages, 375, 276, 0, 5000, 1)</script>
      </tr>
    You cannot, technically speaking, put an element other than a table cell (<td>) in a table row, try:

    Code:
    <table width="300" border="0" align="center" cellpadding="6" cellspacing="0" class="content">
      <tr><td><script type="text/javascript">new fadeshow(fadeimages, 375, 276, 0, 5000, 1)</script>
      </td></tr>
    - John
    ________________________

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

  3. #3
    Join Date
    May 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks a bunch John, that was indeed the problem. I guess it's another case of IE's lack of standards compliance, not to mention my own!

    - Bruce.

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
  •