How can I modify the font and color of my menu text?

Hi,

how can i change the shopify menu font and color to the menu text . Please help.

Thank you

1 Like

@TheWebShed

Kindly Share your Store URL, So that i can help you.

Hi!

You should be able to this by heading to your ‘Online Store’ section, and selecting ‘Customize’ next to the theme you are using.

If not, please share your STORE.myshopify.com link and I will request collaborator access and take a look for you.

@TheWebShed ,

Here you can change the color.

I am using the Dawn theme

  1. I want to change the menu font to Bold

  2. On the top of the home page it displays the name of my store, i want to change the font of that too.

Please help.

Thank yo

@TheWebShed ,

ul.list-menu.list-menu--inline {
    font-weight: bold;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

@TheWebShed , Please share teh screenshot which name you want to change it to be in bold.

sorry for the crappy writing.

1 . change font and color

  1. change color

thank you

@TheWebShed ,

.header__heading span.h2 {
font-weight: bold;
}

ul.list-menu.list-menu–inline {
font-weight: bold;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

Please add below css code in bottom of assets/base.css file

.header__menu-item span {
font-weight: 600;
}
.header__heading-link .h2 {
font-weight: 600;
}

Thank you.