To customize your theme, remember to utilize the {TagsAsClasses} feature.
For instance, when creating your theme, include code similar to this:
<div id="{PostID}" class="post {PostType} {TagsAsClasses}">
<!-- ... -->
</div>
If your post is related to photography and tagged with Croissant and Chocolate, your HTML code will look like this:
<div id="post-26107509778" class="post photo Croissant Chocolate">
<!-- ... -->
</div>
You can then apply specific styles to the .Croissant or .Chocolate classes as needed:
.Croissant {
/* add your custom styles here */
}
.Chocolate {
/* add your custom styles here */
}
For more detailed information on custom themes, visit