Hello everyone,
I’m using the Stiletto theme on my Shopify store and am having trouble keeping the entire header transparent when hovering over the main menu links. I have the transparent header option enabled in the theme editor, which works initially, but the background still becomes opaque when I hover over the menu links or logo section.
I managed to make the sub-menu items background transparent using custom CSS based on another thread I found. However, I can’t seem to figure it out for the main menu links and the logo section.
Here’s the CSS code I added to my theme.liquid file:
<style>
.navigation__submenu-list {
background: transparent!important;
color: #EDE6D6!important;
border: solid #EDE6D6 1px!important;
}
.header__links-list fs-navigation-base {
background: transparent!important;
color: #EDE6D6!important;
}
.header__links header__links-primary {
background: transparent!important;
color: #EDE6D6!important;
}
.header.header--layout-logo-center-nav-below.header--has-logo.header--transparent.header--has-transparent-logo.header--navigation-is-all-caps:hover {
background: transparent!important;
}
</style>
Despite this, the header still changes to a non-transparent background when I hover over the main menu links.
Store URL: https://highfallscannany.com/
Any help on how I can keep the entire header, including the main menu links and logo section, transparent on hover would be greatly appreciated!
Thank you in advance!