On scroll effect disables <a> Links

Hello there

I have here suddenly a strange issue. A scroll effect disables a link in a text element.

Pls see video in the secure note. Please place any screenshots and other visuals by which the site might be identified in the secure note as well. Thank you very much.

Hello @VRANKOVINA,

Thanks for writing to us.

It seems that you have set the animation on element enter and exit, so when it exits, it doesn’t prevent the anchor. To get rid of your issue, I would suggest you please add this custom CSS code to the page CSS.

.x-effect-exit, .x-effect-entering, .x-effect-exiting {
    pointer-events: unset !important;
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding, you can subscribe to One, where customization questions are answered.

Hope it helps.
Thanks

Dear prakash_s
Thank you very much for the lecture. The solution was actually much simpler:
The setting “exit pointer event” should be set to auto. It was “none”. When set to auto, all seems to work just fine.

Glad to hear you’ve fixed the issue.

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