Site logo

Archived topic

Category name in bold

5 replies · Started by Roger on August 1, 2022

Viewing posts 1–6 of 6

Hello,

I'm using the code below to edit the category style. However, the font weight has not been changed to bold.

.cat-links {
    font-family: 'Muli', sans-serif;
	  font-weight: bold;
	  text-transform: uppercase;
}

Hi there,

can i see the page where this is not working ?

Link in text box.

Ok, so in your CSS, you have this:

.entry-meta {
    font-size: 14px;
    font-weight: 500;
}

Which is added after your cat-links CSS. So its getting overwritten.

To fix that change your cat-links CSS to:

.post .cat-links {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

It will make that more specific.

Thank you!

You're welcome !

This archived topic is closed to new replies.