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!
I'm trying to change my header menu items color and style separately, to be like in this image here:
Can anyone assist me?
site: https://o1wpcjjz2a3jgr0q-78669414739.shopifypreview.com
Thank you!
Solved! Go to the solution
This is an accepted solution.
Hi @Andy106
Check this one.
@media only screen and (min-width: 749px){
nav.header__inline-menu li {
background: white;
border: 1px solid black;
border-radius: 20px;
padding: 0px;
}
ul.list-menu.list-menu--inline {
gap: 20px;
}
.header__menu-item {
padding: .9rem 2rem !important;
}
sticky-header.header-wrapper.color-background-1.gradient.header-wrapper--border-bottom {
background: bisque !important;
}
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Oh, sorry I didnt notive that one.
Add this code, on the base.css file.
@media only screen and (min-width: 749px){
ul#HeaderMenu-MenuList-2 li {
border: none !important;
}
}
And save.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @Andy106
Check this one.
@media only screen and (min-width: 749px){
nav.header__inline-menu li {
background: white;
border: 1px solid black;
border-radius: 20px;
padding: 0px;
}
ul.list-menu.list-menu--inline {
gap: 20px;
}
.header__menu-item {
padding: .9rem 2rem !important;
}
sticky-header.header-wrapper.color-background-1.gradient.header-wrapper--border-bottom {
background: bisque !important;
}
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Perfect, thank you!
Solution is perfect, I was just wondering if there is a way for me to remove the circle for when I choose the subcategories, I mean for the subcategory to be normal without the circle style:
This is an accepted solution.
Oh, sorry I didnt notive that one.
Add this code, on the base.css file.
@media only screen and (min-width: 749px){
ul#HeaderMenu-MenuList-2 li {
border: none !important;
}
}
And save.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
In addition to this, how would you change the button background color when hovering? Or having the background of each button a different color?