[Bb-trac] [bbPress] #804: gravatar should be placed between author
name and title, not before
bbPress
bb-trac at lists.bbpress.org
Thu Mar 6 19:58:23 GMT 2008
#804: gravatar should be placed between author name and title, not before
-----------------------+----------------------------------------------------
Reporter: _ck_ | Owner:
Type: defect | Status: new
Priority: low | Milestone: 0.9
Component: Front-end | Version:
Severity: minor | Keywords:
-----------------------+----------------------------------------------------
This is kinda ugly design (new default in kakumei post.php template)
{{{
<?php post_author_avatar(); ?>
<p>
<strong><?php post_author_link(); ?></strong><br />
<small><?php post_author_title(); ?></small>
</p>
}}}
Isn't this much better and mimics other forum standards?
{{{
<p>
<strong><?php post_author_link(); ?></strong><br />
<?php post_author_avatar(); ?>
<small><?php post_author_title(); ?></small>
</p>
}}}
Putting the image inside the <p> also seems to solve the vertical white-
space problem when a post is too short. Without it, their title can bleed
into the following post.
--
Ticket URL: <http://trac.bbpress.org/ticket/804>
bbPress <http://bbpress.org/>
Innovative forum development
More information about the Bb-trac
mailing list