0

I have a Google Partner Badge on my site, based on code that Google provides. They provide the code, and it creates a dynamic image on my site, that is clickable and a live link. However, the cursor does not change to a hand when over the image or indicate it is a live link in any way. In my opinion, this is bad UX. I want to simply make the cursor change to a hand when hovering over the image. But again, the original code is provided by an external site. Can this be done?

eCI
  • 1

2 Answers2

0

Try This:

<span style="cursor:pointer">
// external code here
</span>
Noam Ashbell
  • 219
  • 1
  • 2
  • 8
0

inspect elements then find the container of that image, then add style on it.

.containerOfGoogleBadge {
    cursor:pointer;
}