How can I make the Menu text larger in Dawn 15

Topic summary

A user is experiencing issues with custom CSS code that previously worked in Dawn theme versions 13 and 14 but has stopped functioning in Dawn 15. They want to increase the font size for both the header menu text and the expanded menu state.

A solution was provided involving adding CSS code to the base.css file:

  • Target the header menu items using selectors like nav.header__inline-menu ul.list-menu and .header__menu-item
  • Apply font-size: 22px !important; to increase the text size

The issue appears resolved with this CSS approach, though the exact selectors may need adjustment depending on the specific menu structure in Dawn 15.

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

So I had a code which was working for dawn 13,14 but now it is not. I want to make the text a bit larger both in header menu and once the menu is open. This is my website https://sofa-bed-futon.com/

@sofa-bed-futon

you can use the below code into your base.css file

nav.header__inline-menu ul.list-menu > li .link, nav.header__inline-menu ul.list-menu > li .header__menu-item {
	font-size: 22px !important;
}