# HG changeset patch # User Brian Neal # Date 1298847528 0 # Node ID 7eed448b399c8eeaa1274bbc1f1c15c1c43ef536 # Parent cfad8d605cb8a05e054cd38dddb83420afa611cc Fix #162; make username larger in forum posts. diff -r cfad8d605cb8 -r 7eed448b399c gpp/templates/forums/display_post.html --- a/gpp/templates/forums/display_post.html Sun Feb 27 22:12:18 2011 +0000 +++ b/gpp/templates/forums/display_post.html Sun Feb 27 22:58:48 2011 +0000 @@ -4,12 +4,12 @@ - {{ post.user.username }}
- {% avatar post.user %} +
+ {% avatar post.user %}
Joined: {{ post.user.date_joined|date:"M d, Y" }}
Posts: {{ post.user.user_profile.forum_post_count }}
{% if post.user.user_profile.location %} - Location: {{ post.user.user_profile.location }}
+ {{ post.user.user_profile.location }}
{% endif %} {% for bo in post.user.user_profile.badge_ownership %} {{ bo.badge_count_str }} diff -r cfad8d605cb8 -r 7eed448b399c static/css/base.css --- a/static/css/base.css Sun Feb 27 22:12:18 2011 +0000 +++ b/static/css/base.css Sun Feb 27 22:58:48 2011 +0000 @@ -408,3 +408,6 @@ a.intra { text-decoration: none; } +.post-author { + font-size: medium; +}