REMINDER
Please be respectful of all AppDragers! Keep it really civil so that we can make the AppDrag community of builders as embracing, positive and inspiring as possible.
SOLVED A whole clickable page
-
I would like to make my entire home page (https://www.deambulons.com) clickable so that it can point to the following page (https://www.deambulons.com/realisations.html). I added a link on the section but it doesn't make the whole page clickable (just the logo)
-
@mj-lamouret Hi
we wrap the link to the content and the content of your section is not fullwidth/height.
The easiest solution is to drop an embed code and either wrap the section into a link or add a click handler on your section. (keep the existing link for SEO) -
@wassim Thanks
Could you give me the embed code I need to add? -
@mj-lamouret welcome.
$('#yourSection').click(function () { window.location.href = 'yourpage.html'; });
-
@wassim Thanks a lot Wassim !