Make Menu text bold in Dawn

Topic summary

A user needed help making menu text bold in their Dawn theme.

The solution provided involves:

  • Navigating to Shopify Admin → Online Store → Themes → Actions → Edit code
  • Opening the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Adding the following CSS code at the bottom:
.list-menu--inline {
  font-weight: 700;
}

The solution was successfully implemented and resolved the issue.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

HI @MikaelMo

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.list-menu--inline {
    font-weight: 700;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like