Archived topic
Logo in the header not working to take back to homepage
4 replies · Started by Heath on March 17, 2023
Viewing posts 1–5 of 5
I'd like for people to be able to click my logo in the header to be able to go back to the homepage.
How do I resolve this?
Hi there,
you have this CSS for centering the logo:
.inside-header.grid-container .site-logo {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
Change it to:
.inside-header.grid-container .site-logo {
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
}
Y'all are the best. Thanks!
Thanks again.
Glad to be of help!
This archived topic is closed to new replies.