Twenty15:它怎么能在每个帖子页面上显示不同的颜色?

时间:2015-05-12 作者:Alex

我已经做了一个儿童主题的二一五。我正在尝试设置样式。子主题的css在每个页面或帖子上都有特定的颜色。

我试过这样的方法

.post-id-no.id .hentry,.site-footer {
background-color: #RGBColor !important;
}
但我没有看到任何区别,它仍然是白色的。我到底做错了什么?

1 个回复
最合适的回答,由SO网友:m4n0 整理而成

CSS代码语法不正确。对于特定于帖子和页面的CSS,您需要使用如下内容:

/* Replace x with post/page id and post with page and vice versa*/ 
.page-id-x .hentry, 
.page-id-x .entry-footer {
   background-color: #RGBColor !important;
}

结束

相关推荐

如何在我的iframe插件中插入html/css/js?

我目前有一个iframe插件,它通过短代码显示在WordPress页面上。目前,我一直在iframes“src”中显示网站,但最近我遇到了一个问题,即显示我自己的html/css/js页面。Here is a functioning html page for a chatbox that I would like to include in my iframe.聊天室的文件很大,显示聊天室的html文件使用谷歌的cdn,并从其他文件获取脚本/样式标记。The code for my iframe plu