Hi everyone, I want to make the sub-menu font size smaller. How can I do that on a Dawn 8.0?
Many Thanks
Hi everyone, I want to make the sub-menu font size smaller. How can I do that on a Dawn 8.0?
Many Thanks
@Night_Raider send preview link
hi,
or
Hi @Night_Raider ,
This is Richard from PageFly - Landing page builder, Iād like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.scss->paste below code at the bottom of the file:
@media screen and (min-width: 990px) {
.header__submenu .header__menu-item {
font-size: 12px;
}
}
NOTE: You can change 12px to fit your website
I hope it would help you
Best regards,
Richard | PageFly
Hi Richard,
I could not find theme.scss in 8.0 version
Hi @Night_Raider ,
Sorry about that. You can paste that code in the file base.css
I hope it would help you
Best regards,
Richard | PageFly
Hallo @Night_Raider
You can add code by following these steps to change
paste below code at bottom(base.css)
**@media screen and (min-width: 990px) {**
**.header__submenu .header__menu-item {**
**font-size: 12px;**
**}**
**}**
If you require any further information, feel free to contact me.
Best regards,
Hi @Night_Raider ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
Hi @Night_Raider ,
You can try below code in base.css file:
@media screen and (min-width: 990px) {
.header__submenu .header__menu-item.header__menu-item {
font-size: 16px !important;
}
}
NOTE: You can change 16px to fit your website
I hope it would help you
Best regards,
Richard | PageFly
worked perfectly now, Thank you!