Results 1 to 3 of 3

Thread: Ultimate Fade In Slideshow

  1. #1
    Join Date
    Jan 2012
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade In Slideshow

    1) Script Title: Ultimate Fade In Slideshow

    2) Script URL (on DD): santabarbaradogtrainer.com

    3) Describe problem: I've used this script before without causing this problem. I can't seem to get rid of the black bar that appears at the top of all slides. All images are the same exact size (430x575). I have no margins or padding in the 'fadeshow1' div. The div is called out as <div id="fadeshow1"></div>. The following is my script in the head:

    Code:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    <script type="text/javascript" src="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: [430, 575], //width/height of gallery in pixels. Should reflect dimensions of largest image
    	imagearray: [
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide1.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide2.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide3.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide4.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide5.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide6.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide7.jpg"],
    		["http://www.santabarbaradogtrainer.com/SantaBarbaraDogTrainer_slide8.jpg"] //<--no trailing comma after very last image element!
    	],
    	displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
    	persist: false, //remember last viewed slide and recall within same session?
    	fadeduration: 3000, //transition duration (milliseconds)
    	descreveal: "none",
    	togglerid: ""
    })
    
    </script>
    What is the problem?
    Last edited by jscheuer1; 10-27-2012 at 01:22 AM. Reason: Format

  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

    In the santabarbaradogtrainer.com/SantaBarbaraDogTrainer.css file around line #115:

    Code:
    #content img {
    	float: right;
    	margin: 0px;
    	padding-left: 20px;
    	padding-top: 10px;
    }
    The highlighted line is the problem. There are at least two choices:

    1. Get rid of that line.

    2. Add another rule later:
      Code:
      .gallerylayer img {
      	padding-top: 0 !important;
      }
    The browser cache may need to be cleared and/or the page refreshed to see changes.
    - John
    ________________________

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

  3. #3
    Join Date
    Jan 2012
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default That fixed it...Thanks!!!

    Quote Originally Posted by jscheuer1 View Post
    In the santabarbaradogtrainer.com/SantaBarbaraDogTrainer.css file around line #115:

    Code:
    #content img {
    	float: right;
    	margin: 0px;
    	padding-left: 20px;
    	padding-top: 10px;
    }
    The highlighted line is the problem. There are at least two choices:

    1. Get rid of that line.

    2. Add another rule later:
      Code:
      .gallerylayer img {
      	padding-top: 0 !important;
      }
    The browser cache may need to be cleared and/or the page refreshed to see changes.
    That fixed it...Thanks!!!

Similar Threads

  1. Ultimate Fade-in Slideshow -- Fade Duration and Pause
    By ellenjones6 in forum Dynamic Drive scripts help
    Replies: 6
    Last Post: 02-21-2014, 05:18 PM
  2. Remove initial fade in from Ultimate Fade-in slideshow
    By optimus203 in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 05-14-2012, 06:37 PM
  3. Ultimate Fade-in slideshow - STOP FADE IN ON FIRST IMAGE
    By trillodigital in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 01-10-2011, 01:18 PM
  4. Replies: 3
    Last Post: 07-12-2010, 04:04 PM
  5. Change fade time in Ultimate Fade In slideshow
    By Zaphodz in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 11-17-2006, 01:08 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
  •