Support Forum

newbie – can't post topics

21 Answers

New Answer

LS lyal Strickland
lyal Strickland
Member

found it in a document called wordpress-hooks.php.. deleted it and the forum works fine. is there a way to re-write the script so both work? it not, it’s no big deal…

MP Mr Papa
Mr Papa
Member

lets try something simple first… try changing it to:

<script type="text/javascript">
jQuery(document).ready(function(){
    jQuery(".fadein").fadeTo("medium", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
    jQuery(".fadein").hover(function(){
        jQuery(this).fadeTo("medium", 1.0); // This should set the opacity to 100% on hover
    },function(){
        jQuery(this).fadeTo("medium", 0.7); // This should set the opacity back to 30% on mouseout
    });
});
</script>
LS lyal Strickland
lyal Strickland
Member

ack! that took the whole site down. lol :)

MP Mr Papa
Mr Papa
Member

sounds like you didnt enter the code properly…  or you got strange characters when you copied it…

noticed I didnt mark it as code… let me do that and then you should use the raw copy button…

LS lyal Strickland
lyal Strickland
Member

ah! got it fixed! thank you so much for your help! :)