dont mention it, this wordpress learning this has been keeping me up all night.. pff, the stuff that ive seen tonight. jeez :')
anyways.. im not a pro, so you might wanna consider backing things up before doing this. Real this below, try understand it for yourself.
I am sure there are better ways, but im a newb.
What I would do is:
Try to give all the single posts a class, how?
1. Open up single.php
2. Locat the <body> tag
3 Replace it with: <body <?php body_class(); ?>>
4. Now look at your source code.
5. Notice all your single pages have a UNIQUE CLASS.
6. Use those ID's in you .CSS file to give them a mark-up
This:
<body <?php body_class(); ?>>
produces this on my front page:
<body class="home blog logged-in">
and this on another Page:
<body class="page page-id-228 page-template page-template-no-sidebar-php logged-in">
and this on a single post:
<body class="single postid-503 logged-in">
and this on a category archive:
<body class="archive category category-general-spew logged-in">
... I think you get the idea.
7. Something like:
#content.post-id-02 {your mark-up}