How can I reduce the sub-menu font size on Dawn 8.0?

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,

https://nightraider.co.nz/

or

https://night-raider-nz.myshopify.com/admin/themes/144669049123/editor?previewPath=%2Fcollections%2Fnight-vision-goggles

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

  1. Go to Online Store → Theme → Edit code > assets > base.css

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,

I have posted below Bass.css but it still not working. At below, please see the photo

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,

www.nightraider.co.nz

passport is NZNR or NRNZ

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

1 Like

worked perfectly now, Thank you!