DropDown not working

Support Area Forums Responsive Visual DropDown not working

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question:
  • Author
    Posts
  • #13651
    Ben Wallace
    Participant

    Hello,

    I added a JQuery Toggle feature to my website using a plugin I made, however something about its library made the Lightbox and dropdowns stop working. I disabled the lightbox and installed a different plugin that works with no conflict. Yet still the drop downs are not working. If I’m correct, you used the language for JQuery 1.8.3 for the dropdowns also? I was wondering if you had any ideas on how to get the dropdowns to work again. I used JQ 1.10.2 for the toggle, is there a dropdown feature there that you could simply send the JQ custom code for?

    Thanks!
    Ben

    toggle found on: http://wndwrdmkt.com/graphic-design-services/

    #13656
    Bill Robbins
    Moderator

    Ben,

    Great question. I took a look and I believe a couple of edits to the custom-js.php file will take care of that for you. Take out this section:

    
    // Load Lightbox and add lightbox class and rel for prev/next functionality
    	jQuery(document).ready(function(){
        	jQuery('.lightbox').lightbox();
        	
        		jQuery('.gallery a').addClass('lightbox');
        		jQuery('.gallery a').attr('rel', 'gallery');
        
        });
    

    and also this:

    
    // superfish
    	jQuery(document).ready(function(){
    		jQuery('#nav-bar ul').superfish({
    			delay: 1000,                             
    			animation: {opacity:'show',height:'show'},   
    			speed: 'fast'
    		});
    	});
    

    Save your changes and see if that won’t do it for you. That will remove the call for the lightbox and also the superfish drop-down script from loading in the footer.

    If you run into any questions or trouble, let me know,
    Bill

    #13657
    Ben Wallace
    Participant

    Works like a charm!

    Thanks Bill!

    #13658
    Bill Robbins
    Moderator

    Fantastic. If you need anything else, just let me know.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘DropDown not working’ is closed to new replies.