On Click - External Link

Would love the option to be able to navigate to a link in the record on click from a collection view.

Current use case:
I’m building out my affiliate link page and I have the url saved in a field on the record. Rather than a ‘button’ to take the user to the link, I’d rather the entire card be clickable and navigate to the external url.

This isn’t a major concern, just one of those quality of life improvements. :slight_smile:

2 Likes

Here’s one work around lol - You’ll just need to find the parent ‘element class’ for that page via chrome developer, it’s a few div’s up from the card in the inspector.

/* Change any buttons in a card to an overlay which,
 when clicked, opens the link in a new tab */
.element-XXXXXXXX [data-testid=collection-record] span a{
  position: absolute;
  top:0;
  bottom:0;
  width:100%;
  z-index: 2;
  background: transparent;
  color:transparent;
}

Note: I’m not sure what this does if you have multiple buttons on a card, but if you have one it works just fine.

Before

google doc button opens in new tab…

After

Google doc button becomes an overlay that is the exact height and width of the card and becomes clickable.

1 Like

Thanks again Sean!! This css worked great - just hoping a toggle is on the horizon :slight_smile:

If anyone is trying to use the css above, just fyi, you may need to make an additional tweak to work on mobile, here’s the final css that makes the entire card clickable:

.element-XXXXXXXXX [data-testid=collection-record] a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  color: transparent;
}

You’re optimizing for mobile?? You’re braver than i am haha

1 Like

Only for certain builds lol - it’s def a lot!