MyBB Community Forums

Full Version: Login pop-up not usable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When clicking on the 'log-in' link, there's this pop-up that pops up to enter one's username and password... only it's kind of greyed out, and when you try to do anything with it, it just disappears without logging you in. So the only way to actually log into my forums is by right click+open in new tab on the log-in link, which by-passes the pop-up thingy... but is obviously gonna be a bit confusing when I eventually have actual people on my forums.

I don't recall changing anything in my CSS that could have broken this... but it is nevertheless broken. As I have no idea how I managed to break it, I also have no idea on how to fix it. Would someone point me in the right direction, please?

Screenshot is attached, and the URL to my forum is: http://danach.co.uk/index.php

Thanks. Smile

Edit: I've set up a test account for people to try this with:
Username: testing
Password: toseewhathappens

Edit: Also, just tried it in Internet Explorer, and it works fine there. It just seems to be in Chrome that it doesn't work properly. Any thoughts?
You load jQuery 2 times, remove one instance in the header template:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>
It may be added by a plugin.
Removing the second Jquery did indeed fix it. Thank you very much for your help - I'd have never spotted that myself. Smile