使用以下css代码,具体功能已作注释
/*隐藏页面底部的 最新IT新闻 和 最新知识库文章 */
#under_post_news
{
display:none;
}
#under_post_kb
{
display:none;
}
/*修改文章title的字体等*/
.postTitle
{
font-size:20px;
font-family:黑体;
}
/*不显示评论框(慎用)*/
#comment_form_container
{
display:none;
}
/*导航栏变色*/
#navList a:hover
{
color:#4c9ed9;
}
以下是js代码,用于修改HeaderTitle的链接,默认是指向博客首页地址,这里使用jquery修改
$(function() {
$("#Header1_HeaderTitle").attr("href","http://xxx");
});
时间: 2024-10-14 03:32:00