我正在尝试更改我的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
#1
正如Huelfe上面或下面所述, 你可以使用以下方式定位博客页面:
body.blog
你还可以使用以下方式定位单个帖子或类别页面:
body.single-post
body.category
分别。
#2
你已将博客定义为身体的一类。用它:
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;
}
评论前必须登录!
注册