Hello the team,
Is there a way to make the background image of my boxed site clickable ?
Thank you for your help.
Best regards.
Hey hurraken!
Can you please elaborate on the changes you would like to make? Also, please post the link to your website and point out the image you would like to link
Regards,
Yigit
Hello Yigit,
I’ve a background image on my boxed site. I’d like it be clickable, like an ad.
Thank you for your help.
Best regards
Hi,
Duplicate header.php to your child theme and place an a
tag immediately after the body
opening:
<a href="http://google.com" class="fs_link"></a>
And add this to your custom CSS:
a.fs_link {
position: fixed;
top: 0;
width: 100%;
height: 100%;
left: 0;
}
Best regards,
Josue
Hello Josue,
Thank you for your help, it works !
Best regards.
You are welcome, glad to help :)
Regards,
Josue