helldorado |
08-12-2007 12:49 AM |
I downloaded my copy of vBulletin the night of the 29th, so I think I have the version after the message box fix. So my code looked a little different than the code listed in the search and replace.
The original code
Code:
<tr valign="top">
<td class="controlbar" width="100%" style="padding-right:8px"><textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]">$newpost[message]</textarea></td>
<!--width:$stylevar[messagewidth]-->
<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
</tr>
Replaced with
Code:
<tr valign="top">
I also had to go vBulletin options in the Admin CP -> Message Posting Interface Options and change the options for number of smilies per row before they would perfectly line up.
<td class="controlbar" width="100%" style="padding-right:8px"><textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]">$newpost[message]</textarea></td>
<!--width:$stylevar[messagewidth]-->
</tr>
<if condition="$smiliebox">
<tr><td class="controlbar" width="100%" style="padding-right:8px">$smiliebox</td></tr>
</if>
I also had to go to the Admin CP under vBulletin Options -> Message Posting Interface Options and update the numbers for smilies displays before they would appear in a row.
|