Hi, I implemented this code below in one of my templates.
[removed]
stepcarousel.setup({
galleryid: 'gallerya', //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:3000},
panelbehavior: {speed:900, wraparound:true, persist:false},
defaultbuttons: {enable: true, moveby: 1, leftnav: ['imgs/butt_prev.png', -47, 200], rightnav: ['imgs/butt_next.png', 10, 180]},
contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})
[removed]but the browser renders it like so leaving out a chunk of the above code:
[removed]
stepcarousel.setup({
galleryid: 'gallerya', //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: ,
panelbehavior: ,
defaultbuttons: ,
contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})
[removed]Any help in how I can have it render properly would be great.