Step 2: Give the the container you want to be clickable a unique ID, in its Settings.
Step 3: In the code embed, change clickable to the ID you gave your container.
Step 4: Also in the code, change the URL to your desired link.
Step 5: Publish your site and test the clickable container.
That’s it. You should now have a clickable container.
Adding extra polish
Here’s an optional step – you can make the cursor a pointer when it mouses over the Container. This makes it feel more like a clickable element to the user.
Add the below code in your Embed element, after the closing </script> tag:
<style>
#clickable { cursor: pointer; }
</style>
Change the element name (the part after the #) to the ID you gave your Container.
We hope you liked this tutorial. Check out other Carrd tips & tricks.