Buy me a coffee

How to change Author Name with CSS code?

How To Change Author Name With Css Code 01 Min

If you want to change author name with CSS code, you can use these CSS code to Custom CSS box.

#1. First, click on Author Name to get the author page URL.

In my example, we have:

How To Change Author Name With Css Code 02 Min

#2. Use this code to Custom CSS box

a.blog-author-name[href*="5cf999834aa572000105d795"] {
    visibility: hidden;
}
a.blog-author-name[href*="5cf999834aa572000105d795"]:before {
    visibility: visible;
    content: "New author Name";
}

How To Change Author Name With Css Code 03 Min

Result:

How To Change Author Name With Css Code 04 Min

#3. If you need to disable the Author Name URL, you can add

pointer-events: none;
a.blog-author-name[href*="5cf999834aa572000105d795"] {
    visibility: hidden;
    pointer-events: none;
}

How To Change Author Name With Css Code 05 Min