Page 1 of 1

Adding a Link to the full card

Posted: Tue Sep 29, 2020 11:47 pm
by kevindef
Hi there,

Is there a way to add a link to the entire card similar to this: https://www.fastprinting.com.au/business-cards.htm ?

Thank you.

Re: Adding a Link to the full card

Posted: Wed Sep 30, 2020 6:16 am
by Pablo
I'm sorry, there is currently no option to add a link to the entire card.
But you can post suggestions in the 'suggestions ' section of the forum. If more users find it useful then I will consider it for future development

Re: Adding a Link to the full card

Posted: Wed Sep 30, 2020 6:41 am
by wwonderfull
kevindef wrote: Tue Sep 29, 2020 11:47 pm Is there a way to add a link to the entire card similar to this: https://www.fastprinting.com.au/business-cards.htm ?
I also support the idea and made a better post on this subject. If you like support here in this link
https://www.wysiwygwebbuilder.com/forum ... 28&t=89824

Re: Adding a Link to the full card

Posted: Wed Sep 30, 2020 7:06 am
by kevindef
No problem Pablo, the new WWB16 have so much new features to play around, and I'm having a ball adding them to my new web designs. I'm also a big fan of the Cards, and there's more added features now than before, so thank you for that.

I have also suggested the new link adding feature in the suggestion section by supporting wwonderfull post.

thanks for the suggestions wwonderfull, they are great suggestions and would really love seeing them implemented in the next development.

Re: Adding a Link to the full card

Posted: Sun Oct 04, 2020 5:56 pm
by Fender
Is there a way to add a link to the entire card similar to this: https://www.fastprinting.com.au/business-cards.htm ?
You can do this easy with the - insert HTML in the card properties-
No need of a HTMLobject it's integrated in de Card properties

past this in the code field

Code: Select all

<a href="https://your url/" class="stretched-link">BUY NOW</a>
<style>
.stretched-link:after {
 position:absolute;
 top:0;
 right:0;
 bottom:0;
 left:0;
 z-index:1;
 background-color:transparent;
 content:"";
 pointer-events:auto
}
</style>
The style determines the property of the strechted link

Re: Adding a Link to the full card

Posted: Mon Oct 05, 2020 12:53 am
by kevindef
Thank you soooo much Fender for taking the time to help out a fellow WWB user. I really appreciate it! I'm on the program right now, will give it a go and let you know how I went with it.

Re: Adding a Link to the full card

Posted: Mon Oct 05, 2020 4:20 am
by kevindef
Hi Fender,
Sorry to be a pain. do I put the code in the card property > Object HTML > and where will it go: Before Tag / inside Tag, After Tag, Custom Style? I put it inside After Tag and it works but not sure if that's the right approach though :?

Once again, thanks mate for your time.

Re: Adding a Link to the full card

Posted: Mon Oct 05, 2020 10:22 am
by Fender
Sorry to be a pain. do I put the code in the card property > Object HTML > and where will it go: Before Tag / inside Tag, After Tag, Custom Style? I put it inside After Tag and it works but not sure if that's the right approach though
Sure that works but there is an easier and better way!
Screenshot here https://gofile.io/d/EyicSu
When we make a card you can insert various things like a button, text,image but also HTML!
So actualy it's already possible with a card to make that strechted link.
I used insert HTML no need to doubt about where to put the code like, Before Tag / inside Tag, After Tag, Custom Style.
1-- choose the properties of the card
2-- choose insert
3-- choose HTML
4-- past the code

That's how I did this.
I found this solution here https://www.engie.design/fluid-design-s ... ched-link/
Fender

Re: Adding a Link to the full card

Posted: Tue Oct 06, 2020 5:18 am
by kevindef
Thanks mate, it worked! Perfect!