Hey,
can someone tell me where I can find and change the code for the mobile menu colour?
I would like to have a distinct colour for the menu, but the theme only allows me to change all button colours together.
Thanks so much
Dennis
Hey,
can someone tell me where I can find and change the code for the mobile menu colour?
I would like to have a distinct colour for the menu, but the theme only allows me to change all button colours together.
Thanks so much
Dennis
Hi @dagern ,
Go to Assets > theme.css and paste this at the bottom of the file:
@media only screen and (max-width:768px){
.btn.site-nav__thumb-button,
.slide-nav__overflow--thumb .slide-nav__dropdown,
.slide-nav__wrapper {
background-color: #ef6f6c !important;
}
}
Hope it helps!
Thanks so much! That’s already looking pretty good,
I saw that there is too more elemtents that i need to be able to adjust to make it look good.
When a user has an item in cart another field within the button appears. How can I change the color of that one?
When clicking on Menu - “Häufige Fragen” there is a hover layer appearing. How can I change the color of that one?
Thanks so much!!!
Hi @dagern ,
If it helped you solve your issue, please mark it as a solution. Thank you and good luck.
Hi @dagern ,
@media only screen and (max-width:768px){
.site-nav__thumb-cart {
background-color: #ef6f6c !important;
}
}
Hope it helps!