I tried editing the slim-plus.js file
I could not find it via the WordPress interface so, I used FTP to download it and TextPad to edit it on a PC.
After editing the slim-plus.js file, (and uploading back up) the drop-down no longer works, at all, on my Samsung Galaxy 3 S (android 4.3 smartphone). Working fine in desktop browsers.
Here is the script, after I edited it:
jQuery(document).ready(function ($) {
$(‘.cn-hide’).css(‘display’, ‘none’);
$(‘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
});
});