●主機作業系統:Windows (Xp SP3)
●快速架站程式:AppServ 2.4.1
●您的上網方式: ADSL
●您安裝的程式:Apache + php + MySql
●您的 phpBB 版本:phpBB 3.0 (未有安裝任何外掛)
●您的 domain (網域名稱) : 本機自學中,尚未申請域名
●您的 phpBB 連結網址: http://localhost/phpbb/
各位,小弟有問題請教,
我用的風格是redsilve_c, 參考網址http://www.phpbbhacks.com/stylesdemo/index.php?style=82
論壇首頁的版面文字可移向左嗎?如下圖
如果懂得修改就告知一下~謝謝~
[問題]如何將論壇首頁版面的文字移向左邊?
版面規則
請注意!您的提問必須遵守發問格式,違者砍文。
請注意!您的提問必須遵守發問格式,違者砍文。
Re: [問題]如何將論壇首頁版面的文字移向左邊?
試看看.
開啟
styles/RedSilver_C/template/overall_header.html
找到
取代成
開啟
styles/RedSilver_C/template/overall_footer.html
找到
取代成
儲存後, 清除論壇快取.
P.S.
1. 可自行比較原作者 "RedSilver", "RedSilver_C" 風格之差異.
http://www.phpbbhacks.com/styles/5
2. 除非您不打算升級, 否則建議您試用該作者最新版 "RedSilver 3" 之風格.
http://www.phpbb.com/community/viewtopi ... &t=1176385
開啟
styles/RedSilver_C/template/overall_header.html
找到
代碼: 選擇全部
<body class="{S_CONTENT_DIRECTION}">
<center>
<a name="top"></a>
代碼: 選擇全部
<body class="{S_CONTENT_DIRECTION}">
<a name="top"></a>
styles/RedSilver_C/template/overall_footer.html
找到
代碼: 選擇全部
<table cellpadding="0" cellspacing="0" width="750">
<tr>
<td width="77" height="44" style="padding: 0;background: url('{T_IMAGESET_PATH}/bottom_left.gif') no-repeat;"></td>
<td height="44" style="padding: 0;background: url('{T_IMAGESET_PATH}/bottom_bkg.gif') repeat-x;"> </td>
<td width="77" height="44" style="padding: 0;background: url('{T_IMAGESET_PATH}/bottom_right.gif') no-repeat;"></td>
</tr>
</table>
</center>
</body>
代碼: 選擇全部
<table cellpadding="0" cellspacing="0" width="750" align="center">
<tr>
<td width="77" height="44" style="padding: 0;background: url('{T_IMAGESET_PATH}/bottom_left.gif') no-repeat;"></td>
<td height="44" style="padding: 0;background: url('{T_IMAGESET_PATH}/bottom_bkg.gif') repeat-x;"> </td>
<td width="77" height="44" style="padding: 0;background: url('{T_IMAGESET_PATH}/bottom_right.gif') no-repeat;"></td>
</tr>
</table>
</body>
P.S.
1. 可自行比較原作者 "RedSilver", "RedSilver_C" 風格之差異.
http://www.phpbbhacks.com/styles/5
2. 除非您不打算升級, 否則建議您試用該作者最新版 "RedSilver 3" 之風格.
http://www.phpbb.com/community/viewtopi ... &t=1176385
Re: [問題]如何將論壇首頁版面的文字移向左邊?
在 overall_header.html 以及 overall_footer.html 裡頭,nbafans 寫:謝謝您,文字已移向左邊^^
我也有裝redsliver3, 但是比較喜歡窄版面,
請問這風格如何改版面寬度呢?
各有一個設定寬度的參數 width="750"
同步更新數值, 存檔後, 清除快取即可.
Re: [問題]如何將論壇首頁版面的文字移向左邊?
上面的回覆作法是針對 "RedSilver_C" 風格,心靈捕手 寫:在 overall_header.html 以及 overall_footer.html 裡頭,nbafans 寫:謝謝您,文字已移向左邊^^
我也有裝redsliver3, 但是比較喜歡窄版面,
請問這風格如何改版面寬度呢?
各有一個設定寬度的參數 width="750"
同步更新數值, 存檔後, 清除快取即可.
但是這麼做, 似乎無法正常顯示於 Firefox ?
或許, 是因為之前已經將 <center> 代碼移除.
建議用官方認證的 "RedSilver 3" 風格,
再加上下列的修改, 即可顯示 "窄版面且置中" 的效果.
開啟
styles/RedSilver3/template/overall_header.html
找到
代碼: 選擇全部
<table width="100%" cellpadding="0" cellspacing="0">
代碼: 選擇全部
<table style="margin: 0 10%;" width="80%" cellpadding="0" cellspacing="0">
styles/RedSilver_C/template/overall_footer.html
找到
代碼: 選擇全部
<table cellpadding="0" cellspacing="0" width="100%">
代碼: 選擇全部
<table cellpadding="0" cellspacing="0" style="margin: 0 10%;" width="80%">
P.S.
此例是將表格設定為 "邊界: 上下--0, 左右--10%; 寬度: 80%";
可視實際需要, 自行調整相關數值.