- This topic has 1 reply, 2 voices, and was last updated 13 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Affiliate Platform › WP-Affiliate Banner mouseover image
I’ve created a banner image ad to use with my wp-affiliate plugin and I would like the banner to change when the mouse passes over it.
Could you tell me what to add to my banner code to use a mouseover image.
Thanks,
john G.
Option 1: You can wrap your ad code in a CSS div then style it however you want it. For example:
<div class="my_custom_ad">
.... ad code goes here....
</div>
Now, you can customize my_custom_ad
however you want it.
Option 2: Simply add the following CSS to the CSS file to ad a quick image hover effect:
#gallery img:hover {
... your image hover CSS effect code goes here ...
}