Results 1 to 5 of 5

Thread: Translucant Slide Show working in IE but not in Firefox

  1. #1
    Join Date
    Jan 2011
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Translucant Slide Show working in IE but not in Firefox

    1) Script Title: Translucant Slide Show

    2) Script URL (on DD): http://dynamicdrive.com/dynamicindex...ucentslide.htm

    3) Describe problem: The code I used works using IE8 but when trying to view it on Mozilla Firefox 3.6.13, the pictures will not show. Can you help me fix this problem so people can view it on both browsers? Thanks!

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Does the problem occur on the DD demo page for you as well? If not, please post a link to the page on your site that contains the problematic script so we can check it out.
    DD Admin

  3. #3
    Join Date
    Jan 2011
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the suggestion however the DD demo does work using Firefox. The address is http://www.atkinsonstuartcountryclub.com

  4. #4
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    in the sourcecode I find this image array:
    Code:
    imagearray: [
    		["file:///Z:/ATK-Web/Sites/ASCC/images/asccfacility11.jpg"], //["image_path", "optional_link", "optional_target"]
    		["file:///Z:/ATK-Web/Sites/ASCC/images/facility1.jpg"],
    		["file:///Z:/ATK-Web/Sites/ASCC/images/asccfacility5.jpg"],
    		["file:///Z:/ATK-Web/Sites/ASCC/images/asccfacility2.jpg"] //<--no trailing comma after very last image element!
    	],
    try changing it to something like this
    Code:
    imagearray: [
    		["images/asccfacility11.jpg"], //["image_path", "optional_link", "optional_target"]
    		["images/facility1.jpg"],
    		["images/asccfacility5.jpg"],
    		["images/asccfacility2.jpg"] //<--no trailing comma after very last image element!
    	],

  5. #5
    Join Date
    Jan 2011
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    That worked. Thank you so much!

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
  •