I have made a (very) small modification, which I think is much more logic than how it looks now...
In the post section, under the Message boxs, there is a Mode selection box - This box specifies what happens if you push the buttons in the top... Why not put this "Mode" selection to the Format section ? - Instead of a select box, i have made it an radio button selection...
The following code is from the V40B03 version, but it also works in the "old" versions
In the top of the inc_post_buttons.asp file, replace the code:
<td bgColor="<% =strPopUpTableColor %>" align=right rowspan=2 valign=top>
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b><% =fLang(strLangInc_Post_Buttons00010) %></b></font>
</td>
With this code (nothing is replaced, just added):
<td bgColor="<% =strPopUpTableColor %>" align=right rowspan=2 valign=top>
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b><% =fLang(strLangInc_Post_Buttons00010) %></b></font>
<!-- Move Mode MOD - start -->
<div align="left">
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize-1 %>">
<input type=radio name="font" value="1" onChange="thelp(1)"><% =fLang(strLangPost00510) %><br>
<input type=radio name="font" value="2" onChange="thelp(2)"><% =fLang(strLangPost00520) %><br>
<input type=radio name="font" value="0" CHECKED onChange="thelp(0)"><% =fLang(strLangPost00530) %>
</font>
</div>
<!-- Move Mode MOD - end -->
</td>
--- Finally, remove the following code fom the post.asp file, near line 804 - Then you remove the select box (from the bottom)...
<table border=0>
<tr>
<td>
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b><% =fLang(strLangPost00500) %></b>
<select name="font" onChange="thelp(this.options[this.selectedIndex].value)">
<option value="1"><% =fLang(strLangPost00510) %> </option>
<option value="2"><% =fLang(strLangPost00520) %> </option>
<option selected value="0"><% =fLang(strLangPost00530) %> </option>
</select>
</font></td>
</tr>
</table>
Edited by - kimkr on 05 March 2002 08:02:43