Archived topic
Separate background image for specific posts?
1 reply · Started by Sharrel on October 11, 2016
Hi,
Is it possible to have a separate background image for a specific post? (FYI - Paid advertisement and I want the post to stand out, so I would like to have a separate background image for that particular post)
If you right click the post using Chrome and click "Inspect", you'll see the article element: http://screencast.com/t/xDaruKUXaeJ
That element has a specific ID. In the example, it's post-231205.
So you could add this CSS:
#post-231205 .inside-article {
background-image: url( 'BACKGROUND URL FOR THIS POST' );
}
Hope this helps :)