<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "使用firefox 3.6.6 發表主題, 格式會亂掉"]]></title>
		<link>https://forum.andowson.com/posts/list/7.page</link>
		<description><![CDATA[Latest messages posted in the topic "使用firefox 3.6.6 發表主題, 格式會亂掉"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>使用firefox 3.6.6 發表主題, 格式會亂掉</title>
				<description><![CDATA[ 我使用firefox 3.6.6 連到貴站的 jforum2.2.0 , 以及一般的jforum2.1.8 
<br>
<br>
在”發表主題“時, 下方的“選項"及"附加檔案" 都會偏到右邊 
<br>
<br>
不知道有人解決過這個問題嗎 
<br>
<br>
謝謝]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/431/875.page</guid>
				<link>https://forum.andowson.com/posts/preList/431/875.page</link>
				<pubDate><![CDATA[Sun, 11 Jul 2010 08:38:05]]> GMT</pubDate>
				<author><![CDATA[ ericboy]]></author>
			</item>
			<item>
				<title>回覆:使用firefox 3.6.6 發表主題, 格式會亂掉</title>
				<description><![CDATA[ ericboy您好： 
<br>
 我在我的Notebook上測試可以正常顯示，畫面如附件。我的環境是Windows Vista + Firefox 3.6.6，解析度是1280 * 800，麻煩您提供一下您的環境、解析度設定及錯誤畫面。]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/431/876.page</guid>
				<link>https://forum.andowson.com/posts/preList/431/876.page</link>
				<pubDate><![CDATA[Sun, 11 Jul 2010 19:08:41]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>回覆:使用firefox 3.6.6 發表主題, 格式會亂掉</title>
				<description><![CDATA[ 我的系統是 [b]Mac 10.6.1[/b] , Firefox 3.6.6 , 解析度1280 * 800 , 畫面會亂掉 
<br>
<br>
另個使用者系統是[b]windows7[/b] , 也有類似情況, 使用者詳細環境晚點補上 
<br>
<br>
不過在 winxp 下測試 firefox 3.6.6 解析度1280 * 800 , 畫面正常無誤]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/431/877.page</guid>
				<link>https://forum.andowson.com/posts/preList/431/877.page</link>
				<pubDate><![CDATA[Sun, 11 Jul 2010 19:59:24]]> GMT</pubDate>
				<author><![CDATA[ ericboy]]></author>
			</item>
			<item>
				<title>回覆:使用firefox 3.6.6 發表主題, 格式會亂掉</title>
				<description><![CDATA[ 似乎這個問題只有發生在Mac版的Firefox 3上，修改方式很簡單，請參考下面的說明： 
<br>
<br>
將post_form.htm中的這段程式碼去掉包圍&lt;#include "post_xxx_tab.htm" /&gt;前後的&lt;div&gt;及&lt;/div&gt;即可。 
<br>
修改前： 
<br>
[code=html;first-line: 395;] 
<br>
&lt;!-- Post Options --&gt; 
<br>
&lt;div id="postOptions" class="postTabContents"&gt; 
<br>
 &lt;div&gt; 
<br>
 &lt;#include "post_options_tab.htm"/&gt; 
<br>
 &lt;/div&gt; 
<br>
&lt;/div&gt; 
<br>
<br>
&lt;!-- Poll tab --&gt; 
<br>
&lt;#if allowPoll&gt; 
<br>
 &lt;div id="postPoll" class="postTabContents" style="display: none;"&gt; 
<br>
 &lt;div&gt; 
<br>
 &lt;#include "post_poll_tab.htm"/&gt; 
<br>
 &lt;/div&gt; 
<br>
 &lt;/div&gt; 
<br>
&lt;/#if&gt; 
<br>
<br>
&lt;!-- Attachments tab --&gt; 
<br>
&lt;#if attachmentsEnabled || attachments?exists&gt; 
<br>
 &lt;div id="postAttachments" class="postTabContents" style="display: none; "&gt; 
<br>
 &lt;div&gt; 
<br>
 &lt;#include "post_attachments_tab.htm"/&gt; 
<br>
 &lt;/div&gt; 
<br>
 &lt;/div&gt; 
<br>
&lt;/#if&gt;[/code] 
<br>
<br>
修改後： 
<br>
[code=html;first-line: 395;] 
<br>
 &lt;!-- Post Options --&gt; 
<br>
 &lt;div id="postOptions" class="postTabContents"&gt; 
<br>
 &lt;#include "post_options_tab.htm"/&gt; 
<br>
 &lt;/div&gt; 
<br>
<br>
 &lt;!-- Poll tab --&gt; 
<br>
 &lt;#if allowPoll&gt; 
<br>
 &lt;div id="postPoll" class="postTabContents" style="display: none;"&gt; 
<br>
 &lt;#include "post_poll_tab.htm"/&gt; 
<br>
 &lt;/div&gt; 
<br>
 &lt;/#if&gt; 
<br>
<br>
 &lt;!-- Attachments tab --&gt; 
<br>
 &lt;#if attachmentsEnabled || attachments?exists&gt; 
<br>
 &lt;div id="postAttachments" class="postTabContents" style="display: none;"&gt; 
<br>
 &lt;#include "post_attachments_tab.htm"/&gt; 
<br>
 &lt;/div&gt; 
<br>
 &lt;/#if&gt; 
<br>
[/code] 
<br>
<br>
請幫忙測試如此修改之後在 Mac 及 Windows 7 上面的Firefox 3 是否都可以正常運作，謝謝。 
<br>
參考資料： 
<br>
http://jforum.net/posts/list/4729.page#19138]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/431/878.page</guid>
				<link>https://forum.andowson.com/posts/preList/431/878.page</link>
				<pubDate><![CDATA[Mon, 12 Jul 2010 02:31:23]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>回覆:使用firefox 3.6.6 發表主題, 格式會亂掉</title>
				<description><![CDATA[ It works perfectly fine now. :) 
<br>
<br>
Thanks andowson]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/431/879.page</guid>
				<link>https://forum.andowson.com/posts/preList/431/879.page</link>
				<pubDate><![CDATA[Mon, 12 Jul 2010 09:41:52]]> GMT</pubDate>
				<author><![CDATA[ ericboy]]></author>
			</item>
	</channel>
</rss>