wordpress创建中的site-header,site-inner和site-footer问题的结构和布局style.css

问题描述 投票:0回答:2

救命。我似乎无法在wordpress genesis示例主题中显示边框和边距。在style.css中,我输入了这段代码但是当我在chrome wordpress中刷新时,没有出现。我检查了elemented并确认html结构有.site-header .site-inner .site-footer。我的代码出了什么问题????

Chrome浏览器运行wordpress 5。

.site-header,
.site-inner,
.site-footer {
border: 3px solid #000;
margin: 2 auto;
max-width: 1300px;}

我应该展示一些边界和边距。

css wordpress-theming
2个回答
0
投票

添加“!important”。 (你的css类重写很重要。)

例如-

.site-header,
.site-inner,
.site-footer {
border: 3px solid #000 !important;
margin: 2 auto !important;
max-width: 1300px !important;}

0
投票

谢谢Obsidian Age,控制班R工作!!!!

© www.soinside.com 2019 - 2024. All rights reserved.