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

How to make Home, Shop, FAQs, contact header bold and especially for mobile----> dawn theme

Hi, @enovation You can follow these steps to achieve your result
Go to online storeedit codeGo to base.css file and add the bellow code

@media screen and (max-width: 800px) {
  .header__menu-item {
    font-weight: bold !important;
  }
}

Result:

Hi @enovation

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

@media (max-width: 767px){
.header__menu-item {

font-weight: bold !important;

}}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hello,

unfortunately the code does not work unless I enter only this part:
.header__menu-item {

font-weight: bold !important;

}

without this :@media (max-width: 767px){
but it only works on pc and not on mobile

Hello, @BrainStation23

unfortunately the code does not work unless I enter only this part:
.header__menu-item {

font-weight: bold !important;

}

without this :@media (max-width: 767px){
but it only works on pc and not on mobile