Change Alloy Inline Category Font Characteristics

Is there any way to change the font size, weight, or type in the inline categories view? The font displayed in rather “heavy”.
Screen Shot 2021-02-19 at 1.01.58 PM
Thanks!

Alloy does not set a font weight for the Categories list. Do you have a URL you can share?

Addendum – Looks like the weight comes from the Label class used, which comes from Bootstrap itself. There’s not setting for this currently. Sorry.

Sorry, I found the origin before getting your URL. See my above post.

I’ve just added it to my todo list for the next release.

4 Likes

If it helps, as a short-term fix, you can adjust the appearance using some custom CSS…

.categoryList .label {
padding: 0.5rem 1rem !important;
font-size: 0.875rem !important;
font-weight: normal !important;
min-width: 70px !important;
}

You can see it in action on my Alloy Template: Blog

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.