How to change same page/post css styling from page template (background, font, etc)

link|improve this question
I'm not sure I understand what you mean. Do you mean having individual post styling? – codedude May 11 '10 at 14:44
feedback

1 Answer

Add a custom class to the body tag; you could even use the post name or id for this.

Inside the loop of your page.php file you could do the following:

add_filter('body_class','my_body_classes');
function my_body_classes($classes, $class) {
    // add 'post-###' to the $classes array
    $classes[] = 'post-' . the_ID();
    // return the $classes array
    return $classes;
}
link|improve this answer
I assume that's what pablo is asking... – codedude May 11 '10 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.