Results 1 to 4 of 4

Thread: Step Carousel not working properly in Firefox

  1. #1
    Join Date
    Apr 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Step Carousel not working properly in Firefox

    1) Script Title: Step Carousel

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

    3) Describe problem: My page works great in IE but not in Firefox. The problem is that my buttons are missing and there are scroll bars in place of them. Here is the link: http://www.hampshirereview.com/z/index_media4710.asp

    I'm new to coding so any help is greatly appreciated!
    Thanks in advance!
    Last edited by hrgirl; 04-13-2010 at 03:45 PM.

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

    Default

    There are a JS error related to the script- the code in red below is in the wrong place, and should just be removed:

    Code:
    stepcarousel.setup({
    	galleryid: 'mygallery', //id of carousel DIV
    	beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
    	panelclass: 'panel', //class of panel DIVs each holding content
    	autostep: {enable:true, moveby:1, pause:5000},
    	panelbehavior: {speed:400, wraparound:true, persist:true},
    	defaultbuttons: {enable: true, moveby: 1, leftnav: ['http://www.hampshirereview.com/z/images/leftarrow.png', -10, 80], rightnav: ['http://www.hampshirereview.com/z/images/rightarrow.png', -15, 80]},
    	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
    	contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
    })
    oninit:function(){
     alert("Carousel Viewer has finished loading!")
     isloaded=true
    }
    DD Admin

  3. #3
    Join Date
    Apr 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you very much I will try that!

  4. #4
    Join Date
    Apr 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    It worked!!! Thank you so much!!! You are the best!

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
  •