The ugly-but-working solution is to change the
CODE
<div class="blogbody">
line toCODE
<div class="blogbody<$MTEntryAuthor$>">
And then copy the entire blogbody entry from the stylesheet with a different colour, and a new name, like this.
CODE
.blogbodyChuckler {
font-family:verdana, arial, sans-serif;
color:#6666FF;
font-size:small;
font-weight:normal;
background:#FFF;
line-height:110%;
border-left:1px dotted #666;
border-right:1px dotted #666;
border-bottom:1px dotted #666; padding:10px;
}
font-family:verdana, arial, sans-serif;
color:#6666FF;
font-size:small;
font-weight:normal;
background:#FFF;
line-height:110%;
border-left:1px dotted #666;
border-right:1px dotted #666;
border-bottom:1px dotted #666; padding:10px;
}
The question is: is there a more elegant way to do this? Sure, it works, but the Posted div thing will also need updating for each author, and the title is the wrong colour and I don't know how to fix that.
Anyone got an opinion?