我正在尝试更改 我的wordpress网站上的帖子页面的背景 - http://adamcwdev.marcuscramer.co.uk/journal/
到目前为止,我已设法使用以下代码更改所有页面的背景:
background-image: url("http://adamcwdev.marcuscramer.co.uk/wp-content/uploads/2017/09/G91B40882.jpg");
min-height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: #ffffff;
但是我无法单独更改特定的帖子页面。页面ID为post = 10
答案 0 :(得分:1)
正如Huelfe在上文或下文所述,您可以使用以下方式定位博客页面:
body.blog
您还可以使用以下方式定位单个帖子或类别页面:
body.single-post
body.category
分别
答案 1 :(得分:0)
您已将blog
定义为您的身体类别。使用它:
body.blog #YOURELEMENT {
background-image: url("http://adamcwdev.marcuscramer.co.uk/wp-content/uploads/2017/09/G91B40882.jpg");
min-height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: #ffffff;
}