Blog comment: add the word "said..." after comment author?

How can I make the displayed comment author on POST page appear just like it does in the comment gadget, with “said…” after the author’s name. This provides more context for the author’s name. Please see the comparison in the screenshot.

Hi Debbie,

A quick CSS rule using the “after” selector and the “content” property should do the trick, like so:

content: " said...";   
} ```   
 
Alternately, you could use the “before” selector and add text preceding the username, such as “By”:   
 
``` .perc-comment-username:before {   
content: "By ";   
} ```

Fantastic! That did the trick, Nathaniel.
Thanks so much!

No problem!