Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello community,
Is there anyone who has a CSS code to change the color of the mega menu to match the color of the header, i've been searching all over the settings, try with background change, it won't work ...
If anyone knows how to do it with CSS, i'll be 100% grateful for some helps please :
The color is want is : F9F7F2, and without the grey separation line please.
Thank you so much for anyone that would take time to help me fixing the issue.
aaliyaamira.com
psw : kingaaliya
Solved! Go to the solution
This is an accepted solution.
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag
<style>
.site-header--full .site-nav__item-mega .site-nav__dropdown {
background: #F9F7F2 !important;
}
</style>
Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!
Hi, @AA226
Do you want to change the color of the text or the background?
The background please ?
This is an accepted solution.
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag
<style>
.site-header--full .site-nav__item-mega .site-nav__dropdown {
background: #F9F7F2 !important;
}
</style>
Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!
Perfect thank you so much
Hi @AA226
.site-nav__dropdown.meganav {
background: #F9F7F2 !important;
}