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/
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-menuand.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.
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;
}
