Please advise how to change so the header and footer menu are not hovering over the page with a transparent background, especially on the mobile site. I am trying to get these menus to be opaque with a theme color.
Other articles advise of ways to do it but the theme code and assets are different for this Fetch theme. shop url: https://begood.coffee
Thanks in advance!
Hi @begoodcoffeeco
The coffee products are looking great and the website is very cool.
You can place below css in edit code > asset folder > base.css
and paste below css at bottom
#SiteHeader.site-header {
background-color: #ffffffe0;
}
It’ll look like below
Thanks
Sheesh B
Hi Sheesh,
Thank you very much for your kind words and reply. Unfortunately with this theme, “Fetch” I do not see any asset folder called base.css so I am not sure where to paste the code.
Any help is greatly appreciated.
To clarify, I am trying to make it so that when you tap the menu, it does not hover over the page with a transparent background, especially on mobile. I need the menu to have a solid color background so it does not look cluttered when it is open.
Hi There,
I can guide you how to add the css to base.css file
Click on three dots
Then click on edit code
Then look for assets folder
Then under assets either theme.css or theme.min.css or base.css or base.min.css
Open any file that you can find and paste the below code at the bottom
#SiteHeader.site-header {
background-color: #ffffffe0;
}
.site-header__drawer.is-active {
background-color: #fff;
z-index: 99;
}
This will solve your issue and it’ll look like below
Thanks
Sheesh B
1 Like
Thank you so much! I ended up pasting this recommendation in theme.css.liquid in the assets and it worked perfectly. I really appreciate your help, Sheesh!
1 Like