09-30-2009, 12:16 PM
[Discuz7.1]
1.調整文章區塊大小
後台-界面-風格管理-編輯-切換到高級模式-閱讀區域寬度 {CONTENTWIDTH}:
閱讀區域寬度 = 文章區塊
Zoom / YoutubeHD 影片 640
2.廣告-自定義廣告-添加-帖內廣告-廣告投放位置-右
預設投放位置-下[沒點選廣告位置]
3.活潑風格
廣告加載模式-頁面加載完成後再加載廣告
會導致header廣告被背影圖片蓋住,看不到廣告
4.將廣告放在 文章區塊
A.修改 viewthread_node.htm
找到剪下這段代碼
找到 $post[message]把剛才剪下的代碼貼在 $post[message] 前面
看起來像這樣優點:文章內容的文字會依廣告大小自動斷行
缺點:文章內容開頭使用表格/圖片可能會縮小或被廣告擠下,造成頂部只有廣告
1.調整文章區塊大小
後台-界面-風格管理-編輯-切換到高級模式-閱讀區域寬度 {CONTENTWIDTH}:
閱讀區域寬度 = 文章區塊
Zoom / YoutubeHD 影片 640
2.廣告-自定義廣告-添加-帖內廣告-廣告投放位置-右
預設投放位置-下[沒點選廣告位置]
3.活潑風格
廣告加載模式-頁面加載完成後再加載廣告
會導致header廣告被背影圖片蓋住,看不到廣告
4.將廣告放在 文章區塊
A.修改 viewthread_node.htm
找到
程式碼:
<!--{if $admode && !empty($advlist['thread2'][$post['count']])}--><div class="ad_textlink2" id="ad_thread2_$post[count]">$advlist[thread2][$post[count]]</div><!--{else}--><div id="ad_thread2_$post[count]"></div><!--{/if}-->
<!--{if $admode && !empty($advlist['thread3'][$post['count']])}--><div class="ad_pip" id="ad_thread3_$post[count]">$advlist[thread3][$post[count]]</div><!--{else}--><div id="ad_thread3_$post[count]"></div><!--{/if}--><div id="ad_thread4_$post[count]"></div>
找到 $post[message]
程式碼:
<table cellspacing="0" cellpadding="0"><tr><td class="t_msgfont" id="postmessage_$post[pid]">$post[message]
看起來像這樣
程式碼:
<table cellspacing="0" cellpadding="0"><tr><td class="t_msgfont" id="postmessage_$post[pid]">
<!--{if $admode && !empty($advlist['thread2'][$post['count']])}--><div class="ad_textlink2" id="ad_thread2_$post[count]">$advlist[thread2][$post[count]]</div><!--{else}--><div id="ad_thread2_$post[count]"></div><!--{/if}-->
<!--{if $admode && !empty($advlist['thread3'][$post['count']])}--><div class="ad_pip" id="ad_thread3_$post[count]">$advlist[thread3][$post[count]]</div><!--{else}--><div id="ad_thread3_$post[count]"></div><!--{/if}--><div id="ad_thread4_$post[count]"></div>
$post[message]</td></tr></table>
缺點:文章內容開頭使用表格/圖片可能會縮小或被廣告擠下,造成頂部只有廣告