Hi there!
I would like to disable the link feature from the Creative CTA element. I tried several things but keep seeing the hand icon witch browsers show if you hover a link.
Hi there!
I would like to disable the link feature from the Creative CTA element. I tried several things but keep seeing the hand icon witch browsers show if you hover a link.
Hey There,
By adding following CSS code snippet in Global CSS section, You can disable link feature. This will also disable hover effect animation.
.x-creative-cta {
pointer-events: none; }
Hope this helps
Regards
Thanks Rahul. Is it also possible to disable the link but keep the hover animation?
Hi,
It’s possible but that will require changing the structure of the element itself which we do not recommend and is outside of the scope that we can offer.
We can remove the hand icon using the code below.
.x-creative-cta {
cursor: default;
}
or you can add cursor: default; in the style field of your creative cta element if you wish to apply it for that specific element only.
Hope that helps.
Nice! That’s exactly what I meant. Thanks @paul.ravena.
You are most welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.