How can I make header text bold on the Dawn theme?

Hey, can I make the clickable links on header bold somehow? thanks

https://piirretty.myshopify.com/

@Piirretty

Hello

Please add the below code above in theme.liquid

layout >> theme.liquid

nav.header__inline-menu .list-menu li a.header__menu-item span { font-weight: 700!important; }

Hi @Piirretty

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Assets/base.css
  2. Add code below to bottom of file

.header__menu-item span,
.header__active-menu-item {
	font-weight: bold;
}

If you only want bold active link you use code below

.header__active-menu-item {
	font-weight: bold;
}

Thank you! This one worked.