The "comment by" text is the same size as everything else, while the code shows it was intended to be smaller. In theme_guestbook_entry_comment:

$output .= '<small">'. t('Comment by') .' '. $commentby ."</small><br />";

Should be:

$output .= '<small>'. t('Comment by') .' '. $commentby ."</small><br />";

Comments

hba’s picture

Assigned: Unassigned » hba
Status: Active » Fixed

Thanks. Fixed in CVS for 4.7 and 5.x.

Anonymous’s picture

Status: Fixed » Closed (fixed)