How to can I make headers category titles bold?

How to can I make headers category titles bold?

1 Like

Hi @Eminaksu ,

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.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:
  4. And Save.
ul.navbar-nav.site-nav span {
    font-weight: bolder;
}
1 Like