1 頁 (共 1 頁)

[問題]宣告文字位置的問題...

發表於 : 2003-12-09 19:58
Apache
如下圖...如何把宣告文字移到版面右下角跟版面切齊...
圖檔



麻煩各位大大幫我解答...^^

Re: [問題]宣告文字位置的問題...

發表於 : 2003-12-09 20:00
Apache
還有如何在版面的左下角...加入文字...
如下圖:
圖檔

麻煩各位大大幫我解答...^^

發表於 : 2003-12-09 21:00
先去吃一點Html吧...

發表於 : 2003-12-09 21:15
依夢兒
修改 overall_footer.tpl 。

發表於 : 2003-12-09 21:27
Apache
我知道要在overall_footer.tpl 裡修改呀...
只是不知道要怎麼修改而已...@@

在來去加油!!
謝謝回覆!!

發表於 : 2003-12-09 21:42
GeniusKiKi
............

不知道怎麼修改~ 一.一|||
這是很基礎的 html 語法阿\r
您應該要自己學著改的
而不要等待別人將改好的東西丟給你

網站建置百寶箱

發表於 : 2003-12-09 21:43
依夢兒
搜尋 overall_footer.tpl ,有一句是 Powered by 以及 {TRANSLATION_INFO} 的部份,
找出那一句,把它搬移到你想要的位置就可以了。
至於靠左靠右這就要運用 HTML 語法了,自己去 K 一下:http://www.hkiwc.com

「最佳瀏覽環境」那一句也是,這要自己另外加進去,加在你想要顯示的地方。

如果還是不懂,就用瀏覽器「檢視原始檔」的功能,參考看看竹貓的頁尾是怎麼寫的吧....

發表於 : 2003-12-09 21:56
Apache
GeniusKiKi 寫:............

不知道怎麼修改~ 一.一|||
這是很基礎的 html 語法阿\r
您應該要自己學著改的
而不要等待別人將改好的東西丟給你

我已經很認真在看了..@@

發表於 : 2003-12-09 23:53
基本結構是這樣!參考看看吧!

代碼: 選擇全部

	<table width="100%">
		<tr>
			<td width="50%">左邊</td>
			<td width="50%" align="right">右邊</td>
		</tr>
	</table>

發表於 : 2003-12-10 02:02
Apache
我的overall_footer.tpl
原始

代碼: 選擇全部

<div align="center"><span class="copyright"><br />{ADMIN_LINK}<br />
<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good
	reason) retain the full copyright we request you at least leave in place the 
	Powered by phpBB {PHPBB_VERSION} line, with phpBB linked to www.phpbb.com. If you refuse
	to include even this then support on our forums may be affected. 

	The phpBB Group : 2002
// -->
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2002 phpBB Group </a><br />{TRANSLATION_INFO}<br />{USER_IP}</span></div>
		</td>
		<td class="right"> </td>		
	</tr>
	<tr>
		<td width="15" height="15" nowrap="nowrap"><img src="templates/subSilver/images/frame/BLCorner.gif" width="15" height="15" border="0" /></td>
		<td width="100%" height="15" nowrap="nowrap" class="bottom"></td>
		<td width="15" height="15" nowrap="nowrap"><img src="templates/subSilver/images/frame/BRCorner.gif" width="15" height="15" border="0" /></td>
	</tr>
</table>
</body>
</html>
我把

代碼: 選擇全部

<div align=[color=red]"center"[/color]><span class="copyright"><br />
換成

代碼: 選擇全部

<div align=[color=red]"right"[/color]><span class="copyright"><br />
就可以將宣告放在最右邊
圖檔

發表於 : 2003-12-10 02:21
Apache
關於下面這郭問題
圖檔

我在最上方加入\r

代碼: 選擇全部

<div align="left"><span class="copyright">最佳瀏覽環境 1024x768</span></div>

就是變成....(這樣可以嗎 ?)

代碼: 選擇全部

[color=red]<div align="left"><span class="copyright">最佳瀏覽環境 1024x768</span></div>[/color]
<div align="right"><span class="copyright"><br />{ADMIN_LINK}<br />
<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good
	reason) retain the full copyright we request you at least leave in place the 
	Powered by phpBB {PHPBB_VERSION} line, with phpBB linked to www.phpbb.com. If you refuse
	to include even this then support on our forums may be affected. 

	The phpBB Group : 2002
// -->
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001, 2002 phpBB Group </a><br />{TRANSLATION_INFO}<br />{USER_IP}</span></div>
		</td>
		<td class="right"> </td>		
	</tr>
	<tr>
		<td width="15" height="15" nowrap="nowrap"><img src="templates/subSilver/images/frame/BLCorner.gif" width="15" height="15" border="0" /></td>
		<td width="100%" height="15" nowrap="nowrap" class="bottom"></td>
		<td width="15" height="15" nowrap="nowrap"><img src="templates/subSilver/images/frame/BRCorner.gif" width="15" height="15" border="0" /></td>
	</tr>
</table>
</body>
</html>
圖為\r
圖檔

不過 "最佳瀏覽環境 1024x768" 的字跑不到最下面...

發表於 : 2003-12-10 02:58
建議你先把tpl的code複製到FP...然後再看看為什麼~

發表於 : 2003-12-10 03:00
補充!如果你只是想趕快完成而不想了解它的過程!
可以告訴我!把檔案傳給我我幫你改一下就好了^^||

發表於 : 2003-12-10 03:10
Apache
文 寫:建議你先把tpl的code複製到FP...然後再看看為什麼~
正在看..

發表於 : 2003-12-10 07:17
aiken
還是自己了解過程會比較好...
過程當中可以學習...