Basically, I went to change the text of “read more” in my Admin settings because I wanted the “r” to be capitalized, but I also wanted to make it bold font. How would I go about this?
What you’re looking for, I believe:
span.topic-excerpt-more {
font-weight: bold;
text-transform: capitalize;
}
3 Likes
Ok, so that is actually doing what I want it to, however, when this code gets added, it’s making my .discourse-tags
background color change. And then when I change the tag’s BG color manually, it makes the code you gave me not work…weird. Hmmm. Using FBK Pro theme for this one, btw.
EDIT: Ok, idk what I did, but I placed your code in one of the global.scss files, added “!important;” to one of the tag BG colors, and now it’s working.
1 Like
I’m glad it’s working now! This selector is specific; that would have been very odd.