Forum Replies Created

Viewing 1 replies (of 1 total)
  • You need to edit the script.js file in the scripts folder.

    find the code:

    window.addEvent('domready', function() {
    var myAccordion = new Accordion($('maincol'), 'h2.contentheader', 'div.content', {
    opacity:true,
    display: -1,
    duration: 300,
    alwaysHide: true,
    
    		onActive: function(contentheader, content){
    			contentheader.setStyle('font-weight', 'bold');
    		},
    		onBackground: function(contentheader, content){
    			contentheader.setStyle('font-weight', 'bold');
    		}
    });
    });

    and change the display: -1, to display: 0,

Viewing 1 replies (of 1 total)