if someone wants to accomplish the same using css, you can try this.
Code:
<table width='95%' align='center'><tr> <td><smallfont color=red><b>Spoiler Alert</b> (highlight text):</font></td>
</tr><tr><td class='spoiler'>{param}</td></tr></table>
and then add this to your css file
.spoiler { background-color: #ffffff; font-family:
Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #ffffff;
text-decoration: none; border:1px solid #c4c4c4;
}
or, if you don't have a css file that you link to (you should, man), just use this instead.
Code:
<table width='95%' align='center'><tr> <td><smallfont color=red><b>Spoiler Alert</b> (highlight text):</font></td>
</tr><tr><td style="background-color: #ffffff; font-family:
Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #ffffff;
text-decoration: none; border:1px solid #c4c4c4">{param}</td></tr></table>
hope you don't mind, matrixgl. you kinda inspired me to do this using css. you can also add the button in your template, and edit your vb language file (won't discuss that here however, as that would qualify this as a hack).
here are some screenshots of what it comes out as.