-
jugglinjen
Hello. I have been working with GeneratePress for a few months and am getting the hang of it. I have installed the kicks starter theme and have removed all woocommerce integration. I want to do some basic modifications to the header but cannot seem to find where to do that. There is no header element, only an account element.
I would just like to make the site title a link to the home page and remove the search icon. This should be simple but I cannot find where to do it.
Thanks.
-
Alvind
Hi there,
In Customizer > Additional CSS, find this CSS:
/*position header*/ @media(min-width:1025px) { .site-branding,.site-branding-container { position: absolute; left: 50%; transform: translatex(-50%); }
Then update it to:
/*position header*/ @media(min-width:1025px) { .site-branding,.site-branding-container { position: absolute; left: 50%; transform: translatex(-50%); z-index: 999; }
That should make the site title clickable now.
To remove the search icon, go to Customizer > Layout > Primary Navigation and uncheck the Enable navigation search modal option.
-
jugglinjen
That did it. Thanks so much!
-
Alvind
You’re welcome!
- You must be logged in to reply to this topic.