Aadya
December 31, 2024, 5:56am
1
My current menu is too bold and even sub menu items are bold. Also they get underlined on selection.
https://goaadya.com
I need the same menu font as https://Suta.in or https://www.amrapaliboutique.in/
No bold and little bit better sleek font than what I have and also no underlining
Hi @Aadya
Go to Online Store β Theme β Edit code.
Open your theme.css / based.css file and paste the code in the bottom of the file.
@media(min-width:990px){
.header__menu-item {
font-size: 13px !important;
font-weight: 400 !important;
text-transform: uppercase;
}
summary.list-menu__item span {
font-size: 13px !important;
font-weight: 400 !important;
text-transform: uppercase !important;
}
.header__active-menu-item {
text-decoration: none !important;
}
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hello, @Aadya
Go to Online Store >> Theme >> Edit code.
Open your theme.css / based.css file and paste the code in the bottom of the file.
ul.list-menu.list-menu--inline>li>a, #HeaderMenu-saree>span, #HeaderMenu-kurti>span {
font-size: 15px;
font-weight: 500 !important;
}
Thanks!
ul.list-menu.list-menu--inline>li>a, #HeaderMenu-saree>span, #HeaderMenu-kurti>span {
font-weight: 500;
}
.list-menu {
font-weight: normal;
}
Go to Shopify Admin β Online Store β Themes β Actions β Edit Code .
Open the base.cssfile under the Assets folder.
Add this CSS at the bottom of the file:
This will change the font size of your menu items.
Hello @Aadya
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
@media only screen and (min-width: 990px) {
ul.list-menu.list-menu--inline > li > a, #HeaderMenu-kurti > span {
font-weight: normal !important;
}
.list-menu.list-menu--inline {
margin-left: 15rem !important;
}
.header__icons.header__icons--localization.header-localization {
margin-right: -10rem !important;
}
.header--middle-left .header__heading-link, .header--top-left .header__heading-link {
margin-left: -10.75rem !important;
}
.list-menu {
padding-left: 11rem !important;
}
}
Thanks
Aadya
December 31, 2024, 9:14am
6
Thanks. It worked like a charm. Need one more help.
If you hove the blouse menu or any other menu that has sub menu, width of sub menu is smaller. Hence texts are getting wrapped. Can we do anything about that