1.將z-blog中文章日期中的“年,月,日”改成英文?
相關模板:
b_article-multi.html
b_article-single.html
默認用的時間標簽是<#article/posttime/longdate#> 即 "2007年1月13日" 這樣的形式
你可以換成????????? <#article/posttime/shortdate#>即 "2007-1-13" 這樣的形式
麻煩點的???????????? <#article/posttime/year#>.<#article/posttime/month#>.<#article/posttime/day#> 即 "2007.1.13" 這樣的形式
接著文件重建就完成了.
2.HTML頭定義的文件
中文:<meta http-equiv="Content-Language" content="zh-CN" />
更改成
<meta http-equiv="Content-Language" content="en" />
作法:
修改c_option.asp的Const ZC_BLOG_LANGUAGE="zh-CN"中的"zh-CN"改成"en"
3.右邊導航欄的項目的修改(不顯示統計信息)
方法:修改default.html文件,將以下代碼刪除即可.
<div class="function" id="divStatistics">
<h3><#ZC_MSG029#></h3>
<ul>
<#CACHE_INCLUDE_STATISTICS#>
</ul>
</div>
當然刪除是個笨辦法,用div+css是個好主意
<div style=display:none class="function" id="divStatistics">
<h3><#ZC_MSG029#></h3>
<ul>
<#CACHE_INCLUDE_STATISTICS#>
</ul>
</div>?這里需要注意一點,那就是"display:none"與"visibility:hidden"的區別.“display:none;”在隱藏內容的同時將內容所占據的空間(Web頁面上的范圍)也隱藏了去;而“visibility:hidden;”則會保留被隱藏了的內容所占據的范圍。