Hi, I think you’re referring to how your name (commenter name) displays in the list of comments at the bottom of each page?
I think the default sizing of the area that the name displays is ok for short names, but long names can be a problem.
I went into the stylesheet.css and changed the font-weight setting from bolder to normal.
.comment .name {
width:67px;
padding-right:14px;
font-weight:bolder;
overflow:hidden;
}
to
.comment .name {
width:67px;
padding-right:14px;
font-weight:normal;
overflow:hidden;
}
This worked fine for my name, and may work for you as well. If that doesn’t work, I’d change add a font-size entry, and maybe make it 10px or 11px.
Hope that helps.