Results 1 to 7 of 7

Thread: Black Box in IE for Ultimate Fade-in Show 2.0

  1. #1
    Join Date
    Sep 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Black Box in IE for Ultimate Fade-in Show 2.0

    1) Script Title: Ultimate Fade-in slide show v2.0

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm

    3) Describe problem:

    Slideshow works perfect on FF/Safari, but all I get is a black box in IE.

    http://www.sga.ua.edu

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

    Default

    Are you talking about Swiss Army Slideshow instead? I see that on your page, which works in IE8 at least btw.
    DD Admin

  3. #3
    Join Date
    Sep 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I switched just because I couldn't have a black box on there. Im creating another page thats not public and I'll post here. I wanna try to resolve the ultimate fade-in show problem, because I like the options and script overall more than Swiss Army.

    New Link: http://www.sga.ua.edu/index3.cfm

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

    Default

    The slideshow on that page works fine for me in IE8 at least. Are you talking about another version of IE?
    DD Admin

  5. #5
    Join Date
    Sep 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hmm. I guess earlier versions. IE7 hasn't worked for me on multiple PCs. Nor does it work on my IE page load plugin on FF. IE7 it doesnt work.

  6. #6
    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

    Quote Originally Posted by bphodges View Post
    Hmm. I guess earlier versions. IE7 hasn't worked for me on multiple PCs. Nor does it work on my IE page load plugin on FF. IE7 it doesnt work.
    I have IE 7 and I see what you mean. First thing to try is a valid URL DOCTYPE like:

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

    instead of (from your page's source code):

    Code:
    <!DOCTYPE HTML>
    It would probably also be a good idea to include the opening <html> tag right after that, it's missing, and I believe it's required.

    Also, your body tag:

    Code:
    <body onLoad="P7_ExpMenu()" onLoad="fadeSlideShow">
    That second onload won't do anything other than perhaps cancel the first one. At least for testing purposes, I'd try it first without either:

    Code:
    <body>
    Then, after you see how that goes, with just the first:

    Code:
    <body onLoad="P7_ExpMenu()">
    - John
    ________________________

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

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

    OK, I just tried this out and it worked. But those (reasons in my previous post) may not have made a difference. When I tried this locally, it wouldn't load your iepngfix.htc - so that might have been all that was required to fix this. In any case though, iepngfix is only of any use in IE 6 and less, so there should be conditional comments in place to prevent it's use in all but those browsers.

    Edit: Remove:

    Code:
    img, /*#container ,#menuwwrapper*/ {behavior: url(iepngfix.htc);}
    from your sga2.css file and place it on your page(s) like so:

    Code:
    <!--[if lt IE 7]>
    <style type="text/css">
    img, /*#container ,#menuwwrapper*/ {behavior: url(iepngfix.htc);}
    </style>
    <![endif]-->
    Last edited by jscheuer1; 11-27-2009 at 05:49 PM. Reason: add info
    - 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
  •