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
Comment #1
hba commentedThanks. Fixed in CVS for 4.7 and 5.x.
Comment #2
(not verified) commented