Then I used CSS to turn off pointer events (this disables mouse events so you can’t pause the text marquee on hover nor click) and used Velo to direct users to the necessary page/site. This ends up working since by disabling pointer events on the text marquee, users click the parent container.
Here’s the code and feel free to use custom classes and update the IDs as needed.
CSS:
.text-marquee {
pointer-events: none;
}
Velo:
import wixLocation from 'wix-location';
$w.onReady(function () {
$w("#box1").onClick(() => {
wixLocation.to('https://wixvault.com'); // Navigates to a page/site
});
});