REF: TinyMCE. How can post PREVIEW font size be increased?
Thanks!
Currently there is no way. You need to add an css Class to the content..
edit the file pages/
postmessage.ascxchange the code from..
<td id="PreviewCell" runat="server" class="post" valign="top">
<YAF:MessagePost ID="PreviewMessagePost" runat="server" />
</td>
to...
<td id="PreviewCell" runat="server" class="post previewPostContent" valign="top">
<YAF:MessagePost ID="PreviewMessagePost" runat="server" />
</td>
then you can simply set the font size in the default css file in resources/css/
forum.css ...
.yafnet .previewPostContent { font-size:value of your choice}