MyBB Community Forums

Full Version: MyIPB theme issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just had this theme installed and found an error and cant fix it myself Sad
the link to the theme im using is https://community.mybb.com/thread-193897.html
 in the top right corner where it has the username, its meant to drop down when you click it, but it don't , i was wondering how i can fix this

EDIT:

I added this code i found and fixed the issue
Quote:<script>
jQuery(document) .ready(function() {    
$('.enmenu').on('click', function(){
        $('.ensettings').slideToggle('100');
        return false;
    });
    $('html, body').on('click',function(){
        $('.ensettings').slideUp('100');
    });
    $(".ensettings").click(function(e){
        e.stopPropagation();
    });
});
</script>