Background-color:
body.custom-background {
background-color: #0f0f0f; /* Color for the two borders */
}
#page {
background: #0f0f0f; /* Color for the content/body part in the center */
}
#site-generator {
background: #0f0f0f; /* Color for the footer part in the center */
}
您还可以将其合并到一个片段中,以更改这三个片段的颜色:
body.custom-background, #page, #site-generator { background: #0f0f0f; }
您的页面背景分为两部分。左右两侧和中间部分的两个边框。
这种情况在页脚中也是一样的。您可以更改中间部分的颜色(就像您所做的那样),但不能更改边框颜色。第一部分(body.custom-background
) 关于边框,适用于内容和页脚之外的边框。因此,如果所有内容都是黑色的,那么应用上述代码就足够了。您可以将其放入Customizer>;其他CSS。
我现在选择颜色#0f0f0f
, 因为这是当前的背景色。如果您想要黑漆,请选择#000000
.
让我知道是怎么回事!