Clickable photo, changing when hover

Hello,

I tried to make a image to change when mouse hover,
and also make the image clickable to link to www.kudoskoo.com/contact-us page

I typed this to my text html, and hover change effect works but I don’t know how to make it linked to the page I want.

Please help!!
Thank you!!

Hi @koosang153,

Thanks for reaching out.

You should wrap your image code with <a></a>, Example,

<a href="http://www.kudoskoo.com/contact-us"><img src="http://www.kudoskoo.com/wp-content/uploads/2018/10/question-type1.jpg"
onmouseover="this.src='http://www.kudoskoo.com/wp-content/uploads/2018/10/question-type2.jpg';"
onmouseout="this.src='http://www.kudoskoo.com/wp-content/uploads/2018/10/question-type1.jpg';"></a>

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.