如何在二十九主题中删除类似背景的帧:
我有一个带有二十九主题的wordpress博客。最近我试图改变背景颜色,但不能按我的意愿去做。 我查看了css文件,但无法找到它的代码。 更改正文背景会更改边框颜色,但我不希望背景像边框一样。如何将其作为正常背景? 也许有人可以帮助我?
答案 0 :(得分:1)
添加此css:
body:before,
body:after {
display: none;
}
.site {
margin: 0 !important;
}
或(干净的解决方案)在style.css中找到它并将其删除:
@media screen and (min-width: 44.375em) {
body:not(.custom-background-image):before,
body:not(.custom-background-image):after {
background: inherit;
content: "";
display: block;
height: 21px;
left: 0;
position: fixed;
width: 100%;
z-index: 99;
}
@media screen and (min-width: 44.375em) {
.site {
margin: 21px;
}
}
答案 1 :(得分:0)
删除标准主题样式:
body {
background: #1a1a1a;
}
.site {
margin: 21px;
}