I have some custom font for categories but need to make one stand out different, I did a search and was unable to locate how, using the console I found an ID for the one I planned to test and got this error
As an example, if I wanted “bug” here to be different from howto and feature with Arial
Can anyone share?
Thank you!
If there’s no (unchanging) id for the specific category what about applying the CSS to the second or third h4, or whichever it is? It’s not ideal but would work until you reorder your categories.
안녕하세요,
예를 들어 [data-category-id="x"]를 대상 지정할 수 있습니다. #contribute:bug 카테고리는 data-category-id="1"입니다. 여기서 확인해 보실 수 있습니다 
.category-list tr[data-category-id="1"] h3 {
font-family: Arial, sans-serif;
}
도움이 되셨으면 좋겠습니다 