diff --git a/app/views/forums/_show_topics.html.erb b/app/views/forums/_show_topics.html.erb
index 9af8538ed..f46600a6c 100644
--- a/app/views/forums/_show_topics.html.erb
+++ b/app/views/forums/_show_topics.html.erb
@@ -4,36 +4,40 @@
<% if memos.any? %>
<% memos.each do |topic| %>
- <%= link_to image_tag(url_to_avatar(topic.author), :class => "avatar"), user_path(topic.author) if topic.author%> |
-
-
-
- <%= link_to h(topic.subject), forum_memo_path(topic.forum, topic) %> |
-
-
-
- <%= link_to (topic.replies_count), forum_memo_path(topic.forum, topic) %> |
-
-
- 回答 |
-
- |
-
-
- |
-
-
- <%= authoring topic.created_at, topic.author %>
-
- <% author = topic.last_reply.try(:author)%>
- <% if author%>
- 最后回复:<%=link_to_user author %>
- <% end%>
-
-
- |
-
- |
+
+
+ <%= link_to image_tag(url_to_avatar(topic.author), :class => "avatar"), user_path(topic.author) if topic.author%>
+ |
+
+
+
+ <%= link_to h(topic.subject), forum_memo_path(topic.forum, topic) %> |
+
+
+
+ <%= link_to (topic.replies_count), forum_memo_path(topic.forum, topic) %> |
+
+
+ 回答 |
+
+ |
+
+
+ |
+
+
+ <%= authoring topic.created_at, topic.author %>
+
+ <% author = topic.last_reply.try(:author)%>
+ <% if author%>
+ 最后回复:<%=link_to_user author %>
+ <% end%>
+
+
+ |
+
+
+ |
<% end %>
diff --git a/public/themes/redpenny-master/stylesheets/application.css b/public/themes/redpenny-master/stylesheets/application.css
index 95092aa1d..02626f440 100644
--- a/public/themes/redpenny-master/stylesheets/application.css
+++ b/public/themes/redpenny-master/stylesheets/application.css
@@ -1635,6 +1635,7 @@ img.avatar {
display: block;
width: 38px;
height: 38px;
+ max-width: none;
}