This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Chosen Mutli Select z-index wrong – select appeasr above chosen-drop

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

#22409
Ernest MarcinkoErnest Marcinko
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
}