MyBB Community Forums

Full Version: Request on theme LIB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello MyBB community.
I have one request, which for, sadly I cant offer any reward. So if anyone is willing to do this for free I would be very happy.

Im currently really intherested in theme LIB (life is beutiful), but its default release has one kind of problem.
You can download theme from here: http://mods.mybb.com/view/lib-life-is-be...free-theme
The problem is with Js login form. Its supposed to slide in, but it doesnt, whoever has theme downloaded open the LIB-Fluid-theme.xml and head to line 3653, or search for
<script src="images/noise/script/jquery-1.7.1.min.js" type="text/javascript"></script>
.
The JS login starts working if I change the link to http://code.jquery.com/jquery-1.8.0.min.js, but then every other thing that requires JS on site f*cks up, incl. text editor, collapsing fields, etc. I know how to get the login form to work without JS, but then it loses that beautyness which JS provides.
So if anyone would be willing to help I would be very glad.
Many thanks.
- Augiz.
looks like a jquery conflict with other JS scripts. you need to add a noconflict script something like this.....

<script type="text/javascript">
jQuery.noConflict();

jQuery(document).ready(function($) {
    // your actual JS to execute
});
</script> 
Thanks for a quick answer.
In my case this worked to.
Quote:<script>
$.noConflict();
</script>
Good to know your issue resolved..Smile