How can I make the text on my filter menu bolder?

Hello

I want to make bolder text on my filter menu, can this being done with a code or something simular?

Now i think the text is a little bit thin, i want it semibold or something

Thanks in advance. :slightly_smiling_face:

See attached image:

My url: www.dekanten.no

Hi @Dekanten ,

The below CSS code should make the filter items bold.

.facets__summary span, .facets__item label {
    font-weight: bold;
}

You should add this code to your theme’s CSS file.

1 Like

Hi @Dekanten

Check 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, style.css or theme.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:

li.list-menu__item.facets__item, .facets__summary, .facets__heading--vertical, .button-show-more, .button-show-less {
    font-weight: 900 !important;
}

And save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Hello, thank u so much and this works like a charm. Just as i wanted it, im glad to have guys like you for helping me out. Have a nice day. :slightly_smiling_face:

2 Likes