Log in

View Full Version : FireFox displays Reply Window incorrectly


DRJ
02-06-2005, 12:34 PM
Not sure what the problem is. Some windows are messeduponlyinFireFox(IE is fine). The Reply Window for one is offset so itgoes off the screen. Is there any fix for this?

Zachery
02-06-2005, 12:47 PM
Cut down on the number of smilies in your smilies box.

DRJ
02-06-2005, 01:02 PM
Should that matter? It will display fine in IE and there is room for the reply box and smiles to fit.

Thanks

Zachery
02-06-2005, 02:34 PM
Should that matter? It will display fine in IE and there is room for the reply box and smiles to fit.

Thanks
Well it does if I am telling you it does, IE and Firefox render things differntly.

DRJ
02-06-2005, 11:47 PM
Thanks for your help. Would it be easy to modify it so that the Smilie box could appear below the text box?

noppid
02-07-2005, 12:17 AM
Thanks for your help. Would it be easy to modify it so that the Smilie box could appear below the text box?
That smilie box drives me nuts too! I have to look into how it is rendered and if the smilies can be moved below.

Good Idea.

SVTBlackLight01
02-07-2005, 11:09 AM
Thanks for your help. Would it be easy to modify it so that the Smilie box could appear below the text box?

This is what I'm using. Look in your editor_toolbar template (standard and/or wysiwyg) and find this
<!-- / edit text area -->


</td>

<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
</tr>
</table>

and replace it with<!-- / edit text area -->

</td>
</tr>
<if condition="$smiliebox">
<tr valign="top"><td class="controlbar">$smiliebox</td></tr></if>
</tr>
</table>

DRJ
02-07-2005, 11:34 AM
Thanks, that will work.

SVTBlackLight01
02-10-2005, 10:30 AM
You're welcome :)