Archived topic
Navigation logo not linking to homepage
3 replies · Started by Nick on March 27, 2019
I just increased the size of my site logo in the navigation bar, and add CSS code to to make it fill the navigation area from top to bottom, but now it no longer links to my homepage. Wondering how to get the logo to link to the homepage again.
Thanks in advance for your help!
Hi there,
its actually the bit of CSS you added to the navigation - its relative position means it covers the logo. To fix that try this:
.site-logo {
position: relative;
z-index: 1;
}
Worked. Thank you David, you guys are great!
Glad to be of help