1、打开 post 模版找到:
[CSS] 纯文本查看 复制代码 <em id="returnmessage">
$actiontitle
</em>
修改为:
[CSS] 纯文本查看 复制代码 <ul class="wj_post">
<!--{if !$forum['allowspecialonly']}--><li{if CURSCRIPT=='post' && $special == '0'} class="current"{/if}><a href="post.php?action=newthread&fid=$fid&special=0">{lang post_newthread}</a></li><!--{/if}-->
<!--{if $allowpostpoll}--><li{if CURSCRIPT=='post' && $special == '1'} class="current"{/if}><a href="post.php?action=newthread&fid=$fid&special=1">{lang post_newthreadpoll}</a></li><!--{/if}-->
<!--{if $allowpostreward}--><li{if CURSCRIPT=='post' && $special == '3'} class="current"{/if}><a href="post.php?action=newthread&fid=$fid&special=3">{lang post_newthreadreward}</a></li><!--{/if}-->
<!--{if $allowpostdebate}--><li{if CURSCRIPT=='post' && $special == '5'} class="current"{/if}><a href="post.php?action=newthread&fid=$fid&special=5">{lang post_newthreaddebate}</a></li><!--{/if}-->
<!--{if $allowpostactivity}--><li{if CURSCRIPT=='post' && $special == '4'} class="current"{/if}><a href="post.php?action=newthread&fid=$fid&special=4">{lang post_newthreadactivity}</a></li><!--{/if}-->
<!--{if $allowposttrade}--><li{if CURSCRIPT=='post' && $special == '2'} class="current"{/if}><a href="post.php?action=newthread&fid=$fid&special=2">{lang post_newthreadtrade}</a></li><!--{/if}-->
</ul>
<style>
.wj_post .current a {
border-bottom-color: #FFF;
background: #FFF;
font-weight: 700;
color: #333;
}
.wj_post a {
display: block;
padding: 0 10px;
border: 1px solid #CDCDCD;
background: #E5EDF2;
color: #333;
}
.wj_post li {
float: left;
margin: 0 3px -1px 0;
}
.wj_post {
margin-top: 10px;
padding-left: 5px;
line-height: 30px;
border-bottom: 1px solid #CDCDCD;
margin-bottom: 20px !important;
padding-bottom: 31px;
}
</style>
2、删除标红色的<h3 class="float_ctrl">和<div class="postbox" id="postbox">上边的</h3>
3、再找:
[CSS] 纯文本查看 复制代码 <span><a href="faq.php?action=credits&fid=$fid" target="_blank" title="{lang credits_policy}"><!--{if $action == 'newthread'}-->{lang post_credits_newthread}<!--{elseif $action == 'reply'}-->{lang post_credits_newreply}<!--{/if}--> $creditstring</a></span>
修改为:
[CSS] 纯文本查看 复制代码 <span style="float: right;margin-top: -50px;"><a href="faq.php?action=credits&fid=$fid" target="_blank" title="{lang credits_policy}"><!--{if $action == 'newthread'}-->{lang post_credits_newthread}<!--{elseif $action == 'reply'}-->{lang post_credits_newreply}<!--{/if}--> $creditstring</a></span>
|