Rollover buttons and images

How can I add a Rollover image or Rollover button to my WordPress

For this page you will need the Raw HTML plugin.
Visit the Plugins FAQ for more informations.

What is an image rollover? When you put the mouse pointer over the image (hover) the image changes. It’s pretty easy to have this kind of mouseover effect.

Put your mouse pointer over the following image to see it change

Move your mouse over me

All you need to do is copy and paste the following code into your post:

<a href=‘Destination URL’ target="_top"
onmouseover="document.sub_but.src=’http://yourdomain.com/onroll.jpg’"
onmouseout="document.sub_but.src=’http://yourdomain.com/normal.jpg’">
<img src= ‘http://yourdomain.com/normal.jpg’ width="281" height="55" border="0" alt="Move your mouse over me" name="sub_but">
</a>

And change the parameters in red.
- Destination URL: is the URL you want the image to link to (if you don’t want it to be a link replace with #)
- target=”_top” opens the link in the same window. If you want it to open in a new window replace _top with _blank
- http://yourdomain.com/onroll.jpg is the url of the image that displays when someone points the mouse over it
- http://yourdomain.com/normal.jpg is the url of the image displaying when the mouse isn’t over it (note that you need to insert it twice in the code)
- Change width and height to fit your case
That’s it.

How do I know what the URL of the images is in my case?

1. Create a new folder on your Desktop
2. Name this new folder something like ‘files’ or ‘media’ or whatever
3. Copy your .jpg or any other image file to that folder
4. Upload the folder to the main location (root) of your server using your FTP application
5. http://yourbaseurl.com/nameofthefolder/nameofthefile.extension will be the address at which the file will be stored on the web
Example: http://yourbaseurl.com/media/nameofthefile.jpg



WordPressFAQ.org – Tutorials, Tips & Tricks is made with and for WordPress.
It’s presented by Cédric and hosted by HostExcellence.com
I would like you to give me feedback on this page by commenting in the appropriate section of the Forum. Tell me if it’s been helpful. If it wasn’t please tell me why. If you think something is missing please tell me what. If you have questions about it post them there and I will probably try to give you an answer.
Thank you for visiting and supporting my website.

- Cédric -
  • Share/Bookmark
This entry was posted in Uncategorized. Bookmark the permalink.

Comments are closed.