1 頁 (共 1 頁)

[問題]簡易子版面排列問題

發表於 : 2006-12-12 20:30
evomagic
問題外掛:簡易子版面1.3
參考連結: http://phpbb-tw.net/phpbb/viewtopic.php?t=36645
使用版本:phpBB 2.0.20
狀況描述:

請問各位大大~簡易子版面的編排方式如何更改如下:

現行方式 例:

AAA
->bbb
->ccc
AAA發文區
但是AAA本身也是一個版,發表文章卻是在子版面下方

可否改為 例:
AAA
AAA發文區
->bbb
->ccc
也就是在AAA發文區下方才是子版面

麻煩各位大大指導~~感激不盡~~

發表於 : 2006-12-13 11:44
心靈捕手
您的需求, 只要調整 viewforum_body.tpl 的版面編排即可.

以下的修改, 提供您參考:
#
#--------[OPEN]----------------
#
\templates\subSilver\viewforum_body.tpl

#
#--------[ FIND ]----------------
#

代碼: 選擇全部

	<tr> 
	  <td class="catBottom" align="center" valign="middle" colspan="6" height="28"><span class="genmed">{L_DISPLAY_TOPICS}:&nbsp;{S_SELECT_TOPIC_DAYS}&nbsp; 
		<input type="submit" class="liteoption" value="{L_GO}" name="submit" />
		</span></td>
	</tr>
  </table>
#
#-----[ AFTER, ADD ]--------------------------------
#

代碼: 選擇全部

  <!-- BEGIN sub_forum --> 
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
  <tr> 
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th> 
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th> 
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th> 
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th> 
  </tr> 
  <!-- BEGIN forumrow --> 
  <tr> 
   <td class="row1" align="center" valign="middle" height="50"><img src="{sub_forum.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{sub_forum.forumrow.L_FORUM_FOLDER_ALT}" title="{sub_forum.forumrow.L_FORUM_FOLDER_ALT}" /></td> 
   <td class="row1" width="70%" height="50"><span class="forumlink"> <a href="{sub_forum.forumrow.U_VIEWFORUM}" class="forumlink">{sub_forum.forumrow.FORUM_NAME}</a><br /> 
     </span> <span class="genmed">{sub_forum.forumrow.FORUM_DESC}<br />{sub_forum.forumrow.FORUM_NAME_SUB}<br /> 
     </span><span class="gensmall">{sub_forum.forumrow.L_MODERATOR} {sub_forum.forumrow.MODERATORS}</span></td> 
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{sub_forum.forumrow.TOPICS}</span></td> 
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{sub_forum.forumrow.POSTS}</span></td> 
   <td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{sub_forum.forumrow.LAST_POST}</span></td> 
  </tr> 
  <!-- END forumrow --> 
</table> 
  <!-- END sub_forum -->  
#
#-----[ SAVE & CLOSE ]--------------------------------
#

發表於 : 2006-12-13 15:42
evomagic
感謝心靈捕手大大專業的指導~~問題已經解決!!感激不盡~~