PHPBB3.X论坛风格模板文件forumlist_body修改 for subsilver2风格
  1,调整页面中的 版面 主题 帖子 最新文章 宽度
打开 styles/subsilver2/template/forumlist_body文件

查找
[code] <th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
<th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
<th width="50">&nbsp;{L_POSTS}&nbsp;</th>
<th>&nbsp;{L_LAST_POST}&nbsp;</th>[/code]
替换为
[code] <th width="46">&nbsp;&nbsp;</th>
<th width="554">&nbsp;{L_FORUM}&nbsp;</th>
<th width="70">&nbsp;{L_TOPICS}&nbsp;</th>
<th width="70">&nbsp;{L_POSTS}&nbsp;</th>
<th width="260">&nbsp;{L_LAST_POST}&nbsp;</th>[/code]
保存,上传覆盖,登录后台,清除缓存后,刷新即可。

2,phpbb3首页版面列表右侧显示新文章标题
[code]<!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a>&nbsp;<!-- ENDIF --></p>
<p class="topicdetails">
<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_SUBJECT}</a><!-- ENDIF -->
<br><dfn>{L_LAST_POST}</dfn> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} <br>{forumrow.LAST_POST_TIME}[/code]替换成
[code]<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_SUBJECT}</a><!-- ENDIF -->
<br><dfn>{L_LAST_POST}</dfn> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} <br>{forumrow.LAST_POST_TIME}[/code]
保存,上传覆盖,登录后台,清除缓存后,刷新即可。