05/03/2014 at 10:05 pm
#290229
Keymaster
@ Deanna
Open both the slim-plus.js and slim-plus.min.js files and remove the following from them:
$('h3.cn-accordion-item').click( function() {
var $this = $(this);
var div = $this.attr('data-div-id');
if ( $( '#' + div ).css('display') == 'block' ) {
$( '#' + div ).slideUp();
$($this).children('.cn-sprite').toggleClass('cn-open');
} else {
$( '#' + div ).slideDown();
$($this).children('.cn-sprite').toggleClass('cn-open');
}
return false
});
That will remove the toggle effect.
