• is anybody can show me how add space to commentator name and keep it nice formated? Whether author comment (gravatar and name floating right) or guest comment

    e.g. I comment blog with this theme, my nickname is bocahmiring. on default this theme setting, it just show bocahmiri, not bocahmiring.

    what should i do to add more space to commentator name and keep well formated?

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)
  • The topic ‘How To add more space to commentator name?’ is closed to new replies.