MyBB Community Forums

Full Version: Mouse Over Images
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I'm trying to make my first theme by editing the original xml files css from mybb and making new images etc.

I have added this code x 6 in the header template .....
img src="$theme[imgdir]/black_l/forums.png" alt="$lang->toplinks_image" /></a></li>
to add both forums and portal to the others in the .menu ul. and have made the images and got this result ....
[attachment=13356]

Now i have also made some alternative images that i would like to add as a mouse over effect. Could anyone please tell me what code i need to add to the existing header template to add the second image to achieve this.

Thanks
Try this:
<li><a href="LINK"><img src="ORIGINAL_IMAGE_SRC_HERE" onmouseover="this.src='HOVER_IMAGE_HERE';" onmouseout="this.src='ORIGINAL_IMAGE_SRC_HERE';"></a></li>
Works a treat thanks a lot. Big Grin
No problem, glad I could helpSmile
hmm nice idea Big Grin