How to can I make headers category titles bold?
1 Like
Hi @Eminaksu ,
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- 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:
- And Save.
ul.navbar-nav.site-nav span {
font-weight: bolder;
}
-
Result:
-
I hope it help.
1 Like
