(2011-02-02, 02:10 PM)joey19982 Wrote:(2010-11-27, 02:52 AM)Maj Wrote: Yes... i think you need to add it to tutorial.
+ Doesn't work with many themes exept default.
To get it working with other themes, go to ACP>Templates & Style>Templates>[Name of theme]>Ungrouped Templates>headerinclude
Find:
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
And add under it:
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script> <script type="text/javascript"> jQuery.noConflict(); jQuery(document).ready(function(){ jQuery(".post_buttons img").fadeTo("fast", 0.5); jQuery(".post_buttons img").hover(function(){ jQuery(this).fadeTo("fast", 1.0); },function(){ jQuery(this).fadeTo("fast", 0.5); }); }); </script>
and... this is what the plugin does... :s