Archived topic
Cannot Make Header Element Image Clickable
3 replies · Started by Jerry on April 10, 2023
After many hours of trying, I can't seem to make my hero header image clickable. The following method is not working for me:
https://generatepress.com/forums/topic/header-element-clickable/
This is the site with the issue:
https://filipinatransgoddess.com
Appreciate your help!
Hi there,
there needs to be a link inside the site header for that to work.
Go to Appearance > Widgets -> Header Widget and add a HTML block with:
<a class="hero-click" href="full_url_of_link"><!-- click zone --></a>
Then add this CSS:
#site-header {
position: relative;
}
.hero-click {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
Thank you David! Didn't have the HTML in the proper place. Works fine now
Glad to hear that!