Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Chosen Mutli Select z-index wrong – select appeasr above chosen-drop › Reply To: Chosen Mutli Select z-index wrong – select appeasr above chosen-drop
April 30, 2019 at 12:43 pm
#22409
Keymaster
Hi,
Indeed, that is not correct. I think the only way to fix that for now is by using a custom code. Please try addomg this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!
add_action('wp_footer', 'asp_sb_footer_fix');
function asp_sb_footer_fix() {
?>
<script>
jQuery(function($){
var z = 1040;
setTimeout(function(){
$('.asp_sb .chosen-container').each(function(i, o){
$(this).css('zIndex', z - i);
});
}, 2500);
});
</script>
<?php
}