WordPress 2.8+ gave us a a lot of new sets of classes for the body post and comment areas. That will allow designers to use those tags in designing their site. These tags are 'dynamically generated' when certain events or pages are loaded. To enable your theme to use those tags you just have to do a little editing to your theme.
<body <?php if (function_exists('body_class')) { body_class(); } >>
On Frumph.NET and other WordPress / ComicPress sites, there's a plethora of different customizations you can do. Per page, per category, if the page is in the comic category and more. In example on this site for this page if you were to go to page 2 of this post.
<body class="single single-post postid-220 logged-in paged-2 single-paged-2 user-admin sitemember noncomic gecko single-category-wordpress single-author-admin am day morning tue layout-3c">
All of these can be used to design your site by just placing one of those before the element you want to use.
↓ Read the rest of this entry...

