修改网站背景图为全屏

复制以下代码放进wp-content/themes/b2/Assets/fontend/style.css里面的.site的类里

.site{background-size: cover;}

更换了阿里iconfont

[button color="success" url="https://dbz.im/50.html" outline="" target="_blank"]阿里iconfont使用方法[/button]

修改评论框提示

/b2/comments.php ~131

CSS

添加进style.css
首页文章区标题下红线

/*首页文章区标题下红线*/
.post-list .module-title {
    position: relative;
    display: inline-block;
}
.module-title::after{
    bottom: 5%;
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    background: #fc5e83a1;
    border-radius: 5px;
    left: 0;
}
.post-list .module-title {
    font-weight: 100;
} 

分类: skill+ 标签: wordpress

评论