Typecho的sagiri外观添加背景
原因
因为我感觉背景太白了,就只有banner有图片(
第一步
在mix.min.css
里添加如下内容
//文件位置在 usr\themes\sagiri\css
目录下
//要在适当的位置,不要在其他已有样式内添加
//比如
//td //样式名称 { //以中括号开头 中括号结尾
// border-bottom-width: 1px //样式属性
//}
.bg {
z-index: -3;
width: 100%;
height: 100%;
position: fixed;
min-height: 475px;
background-repeat: no-repeat;
background-size: cover;
}
第二步
在head.php
添加以下内容
//文件位置在 usr\themes\sagiri\component
下
<div class="bg" style="background-image:url(url//填写你要换的图片地址)"></div>
大功告成