我无法在CSS文档中更改页脚背景颜色。
footer{ background-color: lightblue; text-align: center; }
我也无法改变背景颜色。
aside{ background-color: lightgray; }
我真的很感激帮助。
答案 0 :(得分:2)
您可以在页脚内使用div。见贝娄小提琴:
.site-footer {
background: orange;
}
#footer-content {
background: red;
}
<footer class="site-footer">
<div id="footer-content">
<p>Copyright 2017 @ Domain - All Rights Reserved </p>
</div>
</footer>
答案 1 :(得分:0)
以下代码专门用于免费主题。
.site-footer .footer-top {
background: #eee ;
}
如果您还想更改页脚文本区域的背景颜色,则可以在第一个代码中添加以下代码,customize> Additional CSS是:
.site-footer .footer-bottom {
border-top: 1px solid #eee;
background: #eee ;
}
希望这对所有人都适用,特别是那些使用任何免费wordpress主题的人。
答案 2 :(得分:0)
footer {
background-color: #40e0d0;
text-align: justify;
}
aside {
background-color: ;
text-align: justify;
}
上面的脚本非常适合在我的博客网站上的“添加自定义CSS编辑主题代码”中使用 https://www.seemainfoelibrary.com/search/label/Business%20Law
非常感谢我正在搜索这种类型的脚本。