Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #65425
    dragonsky51
    Member

    Hi,

    At first, I’m sorry for my english…

    I use your theme, but I have an issue.
    I did a plugin, which use a Jquery Dialog.

    But the menu hide it. I post you a screenshot :

    Image

    I tried to fix it with :
    – MoveToTop (but, it broke the jquery code)
    – z-index …. find nothing

    This is my code :

            <script type="text/javascript">
    		jQuery( document ).ready(function( $ ) { 
    			 
    		var $j = jQuery.noConflict();
    		// increase the default animation speed to exaggerate the effect
    		$j.fx.speeds._default = 1000;
    		$j(function() {
    			$j('#new_inscription_dialog').dialog({
    				autoOpen: false,
    				show: 'blind',
    				width:700,
    				hide: 'explode',
    				modal: true,
    				buttons: {
    				Cancel: function() {
    					$j(this).dialog('close');
    					}
    				}
    			});
    			$j('#new_inscription_button').click(function() {
    					$j('#new_inscription_dialog').dialog('open');
    					return false;
    			});
    		});
    		}); 
    	</script>
    

    If you can help me !
    Thanks ! (for your nice theme too !)

    #65443
    Sakin
    Keymaster

    @dragonsky51: Not sure what are you trying to do it. We don’t support jQuery issues. For that you need to hire a customizer.

    Our menu in Catch Responsive uses of z-index 198. If you want to change that then you can change the z-index in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .nav-primary, .nav-footer {
        z-index: 198;
    }
    #65508
    dragonsky51
    Member

    Hi,

    Thanks a lot ! It works !
    I changed it to “1”.

    Thanks again for your quickly answer !

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Issue with jquery Dialog’ is closed to new replies.