El siguiente código permite modificar la insignia de Administrador o Moderador que administra contenido en una comunidad:
/* Below is the CSS structure to change the Moderator naming convention and also the badge color
Note: you can also change the admin name and color by duplicating the code below and using the class name
.circle-post-badge.admin */
.circle-post-badge.moderator {
background-color: #41b883; /* button Color */
display: inline-flex;
align-items: center;
justify-content: center;
padding: 6px 12px;
border-radius: 5px;
min-width: max-content;
position: relative;
width: auto;
font-size: 0;
}
.circle-post-badge.moderator::before {
content: none;
display: none;
}
.circle-post-badge.moderator::after {
content: "Certified Expert"; /* Button label */
color: #fff;
font-size: 11px;
white-space: nowrap;
pointer-events: none;
padding: 6px 12px;
background-color: inherit;
border-radius: inherit;
display: inline-block;
width: auto;
}