Keith Vaugh+ 16 Report post Posted July 30, 2011 Hi all If body.home.blog is the for the main blog page, what is the equivalent for a single blog entry, i.e. when you click the continue reading, you are taken to a new page. Thanks Share this post Link to post Share on other sites
catrina 103 Report post Posted July 31, 2011 Each blog entry comes with in a blog post ID number, which you can identify when you're looking at the top of the source. It should look something like this: post-id-# (# is replaced with the ID for that post) The CSS selector for it would look like this: body.post-id-# Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
Keith Vaugh+ 16 Report post Posted July 31, 2011 Is it possible to have it automated, i.e. so that for every new entry (when opened individually) that a custom background is used? Share this post Link to post Share on other sites
catrina 103 Report post Posted July 31, 2011 I don't know of any way to make it automated with CSS. Do you plan on using a different image for each single post? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
Keith Vaugh+ 16 Report post Posted July 31, 2011 I guess I'm finally learning LOL - here's the solution I came up with thanks to your input yesterday. body.single.single-post {background: url(IMAGE URL);background-position: center top;background-repeat:no-repeat;background-color: black;} Share this post Link to post Share on other sites
catrina 103 Report post Posted July 31, 2011 Fabulous! Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites