discuz克米梅州社区修改

common\extend_common.css
1.
#toptb.comiis_toptb {background:#333;height:38px;line-height:38px;border-bottom:1px solid #333;color:#fff;}
改为
#toptb.comiis_toptb {min-width: 1200px;background:#333;height:38px;line-height:38px;border-bottom:1px solid #333;color:#fff;}
增加  min-width: 1200px;
2.
#toptb.comiis_toptbmh {background:#f9f9f9;height:38px;line-height:38px;border-top:2px solid #0087be;border-bottom:1px solid #e8e8e8;color:#444;}
改为
#toptb.comiis_toptbmh {background:#f9f9f9;height:38px;line-height:38px;border-bottom:1px solid #e8e8e8;color:#444;}
删除  border-top:2px solid #0087be;
3.
删除 .comiis_xnavmh {border-top:3px solid #1fa1e2;border-left:none;border-right:none;}
4.
#hd {background:url({STYLEIMGDIR}/comiis_bodybg.jpg) top center no-repeat;}
改为
#hd {min-width: 1200px;background:url({STYLEIMGDIR}/comiis_bodybg.jpg) top center no-repeat;}
增加
5.min-width: 1200px;
.comiis_footer{padding-bottom:20px;text-align:center;background:#eee;border-top:2px solid #ddd;text-align:center;margin-top:10px;}
改为
.comiis_footer{min-width: 1200px;padding-bottom:20px;text-align:center;background:#eee;border-top:2px solid #ddd;text-align:center;margin-top:10px;}
增加min-width: 1200px;

common\header.php
1.
<div id=”toptb” class=”cl comiis_toptb<!–{if ($comiis_header==1 && $_G[‘basescript’]==’portal’) || $comiis_header==3}–> comiis_toptbmh<!–{/if}–>”>
改为
<div id=”toptb” class=”cl comiis_toptb<!–{if ($comiis_header==1 && $_G[‘basescript’]==’portal’) || $comiis_header!=3}–> comiis_toptbmh<!–{/if}–>”>
2.
<!–{if !($comiis_header==1 && $_G[‘basescript’]==’portal’) && $comiis_header!=3}–>
<div class=”comiis_nvdiv”>
<div id=”comiis_nv”>
<div class=”wp comiis_nvbox cl”>
<!–{if $comiis_qmenu==1}–><a href=”javascript:;” id=”qmenu” onmouseover=”delayShow(this, function () {showMenu({‘ctrlid’:’qmenu’,’pos’:’34!’,’ctrlclass’:’a’,’duration’:2});showForummenu($_G[fid]);})”>{lang my_nav}</a><!–{/if}–>
<ul>
<!–{loop $_G[‘setting’][‘navs’] $nav}–>
<!–{if $nav[‘available’] && (!$nav[‘level’] || ($nav[‘level’] == 1 && $_G[‘uid’]) || ($nav[‘level’] == 2 && $_G[‘adminid’] > 0) || ($nav[‘level’] == 3 && $_G[‘adminid’] == 1))}–><li {if $mnid == $nav[navid]}class=”a” {/if}$nav[nav]></li><!–{/if}–>
<!–{/loop}–>
</ul>
<!–{hook/global_nav_extra}–>
</div>
</div>
</div>
<!–{/if}–>
删除 <!–{if !($comiis_header==1 && $_G[‘basescript’]==’portal’) && $comiis_header!=3}–> 和 <!–{/if}–>
3.
<div class=”comiis_xnav<!–{if ($comiis_header==1 && $_G[‘basescript’]==’portal’) || $comiis_header==3}–> comiis_xnavmh<!–{/if}–>”>
改为
<div class=”comiis_xnav”>
4.
<!–{if !($comiis_header==1 && $_G[‘basescript’]==’portal’) && $comiis_header!=3}–>
改为
<!–{if !($comiis_header!=1 && $_G[‘basescript’]==’portal’) && $comiis_header!=3}–>

member\comiis_login.php
<td style=”padding:0px !important;” class=”kmreg”><a href=”member.php?mod={$_G[setting][regname]}” style=”color:#fff;”>注册</a><a href=”javascript:;” onclick=”showWindow(‘login’, ‘member.php?mod=logging&action=login&viewlostpw=1’)” style=”padding-right:0px;color:#fff;”>忘记密码</a></td>
改为
<td style=”padding:0px !important;” class=”kmreg”><a href=”member.php?mod={$_G[setting][regname]}” style=”color:#369;”>注册</a><a href=”javascript:;” onclick=”showWindow(‘login’, ‘member.php?mod=logging&action=login&viewlostpw=1’)” style=”padding-right:0px;color:#369;”>忘记密码</a></td>