Thanks in advance.
I’d like to have posts with different colored borders and headers. It would be nice to choose a category of the post (red, blue, black, etc.) and have it change the class for that specific post.
If it were outside of dreamweaver, it would use classes.
So I could say:
<div class="red box">
<h3>Header</h3>
Content
</div>
Ideally this would work by having an option in the design view named ‘classes’ or ‘post styles’. I would choose ‘box’ and ‘red’, and the style would be changed. Is this possible?
Use ‘post_class‘ for custom CSS per post.
An example with 3 variations (only use 1):
To be able to choose a color in the post, use a custom field conditional.
http://codex.wordpress.org/Custom_Fields
To just change it based on category and such wrap the post class examples above in a category conditional.
http://codex.wordpress.org/Conditional_Tags#A_Category_Page
The logic ( not proper code but ya):