Results 1 to 3 of 3

Thread: Ultimate Fade-In Slideshow centering conflict with IE9?

  1. #1
    Join Date
    Jul 2012
    Location
    USA
    Posts
    8
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-In Slideshow centering conflict with IE9?

    Ultimate Fade-In Slideshow

    http://www.dynamicdrive.com/dynamici...nslideshow.htm


    I am using this slideshow script on my website, which I am building using SocialEngine software. The show itself has the slideshow images centered in the middle of the slideshow frame, except when I view it on my site in IE9.

    If I view it in Firefox, the show is centered. If I use the code in a simple .html webpage and view it with IE9, it is centered. I have tried adding some CSS such as the following:

    Code:
    #fadeshow1 img {
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    }

    Code:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
    </script>
    
    
    <script type="text/javascript" src="http://[mysite.com]/fadeslideshow.js">
    
    
    /***********************************************
    * Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
    ***********************************************/
    
    
    </script>
    
    
    <script type="text/javascript">
    
    
    var mygallery=new fadeSlideShow(
    {
    	
    wrapperid: "fadeshow1", 
    //ID of blank DIV on page to house Slideshow
    	dimensions: [1000, 500],
    
    //width/height of gallery in pixels. Should reflect dimensions of largest image
    	imagearray: 
    [
    		
    ["img",  "link", "_blank", "caption"],
    	        
    ["img", "link", "_blank", "caption"]
    	
    	],
    	
    
    displaymode: {
    type:'auto', pause:2500, cycles:0, wraparound:false
    },
    	
    persist: false, //remember last viewed slide and recall within same session?
    	
    fadeduration: 500, //transition duration (milliseconds)
    	descreveal: "ondemand",
    	togglerid: ""
    })
    
    
    
    
    </script>
    
    <body>
    
    <div id="fadeshow1">
    
    </div>
    
    
    </body>
    I have tried several different forms of CSS, but nothing is working. Any help in this matter would be greatly appreciated. Here's a link to the page in question:

    http://mypetsonparade.com/pages/parade/

    Thank you for your time!

  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

    Update to jQuery 1.7x. Change:

    Code:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
    to:

    Code:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js">
    - John
    ________________________

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

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    tnd1000 (09-01-2012)

  4. #3
    Join Date
    Jul 2012
    Location
    USA
    Posts
    8
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default

    Thank you very much! You guys have been stellar, in both your coding and your helpfulness!

Similar Threads

  1. Ultimate Fade-in Slideshow - javascript conflict?
    By hugh in forum Dynamic Drive scripts help
    Replies: 6
    Last Post: 07-06-2012, 03:06 AM
  2. Ultimate Fade-in slideshow (v2.1) and Lightbox conflict
    By nzguy1 in forum Dynamic Drive scripts help
    Replies: 9
    Last Post: 09-06-2011, 02:22 PM
  3. Resolved Ultimate Fade-in slideshow not centering
    By othelwaite in forum Dynamic Drive scripts help
    Replies: 4
    Last Post: 12-13-2010, 04:52 AM
  4. Replies: 8
    Last Post: 09-18-2009, 09:44 PM
  5. Ultimate Fade-in Slideshow centering
    By dwyerm91 in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 04-23-2008, 02:19 PM

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
  •