Selectively Disable Hover & Link Feature from Creative CTA

Hi! From another post, I learned how to disable the hover effect animation and link feature from the Creative CTA element in Global CSS using:

.x-creative-cta {
pointer-events: none; }

Is there a way to disable it on the home page only and leave it active on other pages? Thanks!

Yes, you can change the code to this.

.home .x-creative-cta {
    pointer-events: none; 
}

Thanks

1 Like

Thank you so much! Worked perfectly! Have a great day!

Glad we were able to help :slight_smile:

1 Like

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