所以我正在尝试将CSS应用到wordpress中的单个页面,如果有人能指引我朝着正确的方向发展,那么我会遇到一些麻烦。
我在主题css文件夹中有这个
.content h3 {
background-position: left top;
background-repeat: no-repeat;
border-bottom: 1px solid #e8e8e8;
color: #444;
font-family: Arial,Helvetica,sans-serif !important;
font-size: 21px !important;
font-weight: bold;
letter-spacing: 0;
line-height: 100%;
margin-bottom: 4px;
padding-bottom: 14px;
padding-left: 0;
padding-top: 4px;
text-transform: capitalize;
}
我已经在CSS文件的底部放置了这个以实现单页
.page-id-437 .h3.gv-field-3-1{
background-position: left top;
background-repeat: no-repeat;
border-bottom: 1px solid #e8e8e8;
color: #444;
font-family: Arial,Helvetica,sans-serif !important;
font-size: 21px !important;
font-weight: bold;
letter-spacing: 0;
line-height: 100%;
margin-bottom: 4px;
padding-bottom: 14px;
padding-left: 0;
padding-top: 4px;
text-transform: capitalize;
}
非常感谢任何帮助
编辑:我应该补充一点.h3.gv-field-3-1是我要编辑的特定字段,437是我希望它进入的页面ID
答案 0 :(得分:0)
您的方法没有任何内在错误。 h3
是一个类,或者应该使用类.gv-field-3-1
定位h3。另外,你确定你的身体有页面类吗?