Quote:
Originally Posted by LifesGreatestGift
What is causing your issue is that you are running the tooltip mod. You just need to change the code for the jQuery to use noconflict
In your tooltip mod code change it to
HTML Code:
<script>
$.noConflict();
jQuery("#scanudesc a[title]").tooltip({
position: "bottom right",
effect: "slide"
});
</script>
and see if that fixes the issue.
EDIT
whats weird is the jQuery tooltip code is embedded and called for every forum you have. Bad coding. It should have been called in the head due to it not having dynamic content.
|
Hmmm, should I try the following or it would be no help?