MyBB Community Forums

Full Version: Advanced Quick Reply destroys Layout in Firefox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I installed the Advaced Quick Reply Plugin on my forums. But as soon as it is activated there is a new scrollbar at the bottom of the windows in Firefox as if there was content at the right of my forum.

My layout has a fixed width so it may have something to do with that. Does anyone know how to fix this bug?
Maybe turning off the smilie box will make it a bit thinner.
Thanks for answer but turning off the smilies didn't solve the problem. Here is the sourcecode of the Qucik Reply (with smiliebox turned off). I guess changing some percentage values to fixed px values could help:

	<!-- start: showthread_quickreply -->
<br />
<form method="post" action="newreply.php?tid=35&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
	<input type="hidden" name="my_post_key" value="6ea762139f5f8f527dfddd796af072fd" />
	<input type="hidden" name="subject" value="RE: Sportwagen" />
	<input type="hidden" name="action" value="do_newreply" />
	<input type="hidden" name="posthash" value="99280eaec2699d1d6a7c8c20e2dbe725" id="posthash" />
	<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
	<input type="hidden" name="lastpid" id="lastpid" value="102" />

	<input type="hidden" name="from_page" value="1" />
	<input type="hidden" name="tid" value="35" />
	<input type="hidden" name="method" value="quickreply" />

	<table border="0" cellspacing="1" cellpadding="4" class="tborder">
		<thead>
			<tr>
				<td class="thead" colspan="2">
					<div class="expcolimage"><img src="images/collapse.gif" id="quickreply_img" class="expander" alt="[-]" title="[-]" /></div>

					<div><strong>Schnellantwort</strong></div>
				</td>
			</tr>
		</thead>
		<tbody style="" id="quickreply_e">
			<tr>
				<td class="trow1" valign="top" width="22%">
					<strong>Nachricht</strong><br />

					<span class="smalltext">Gib hier deine Antwort zum Beitrag ein.<br /><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" checked="checked" />&nbsp;<strong>Signatur</strong></label><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>Smilies ausschalten</strong></label><br /><label><input type="checkbox" class="checkbox" name="modoptions[closethread]" value="1" />&nbsp;<strong>Thema schließen</strong></label><br /><label><input type="checkbox" class="checkbox" name="modoptions[stickthread]" value="1" />&nbsp;<strong>Thema wichtig setzen</strong></label></span><br />
				</td>
				<td class="trow1">
					<div style="width: 95%">

						<textarea style="width: 100%; padding: 4px; margin: 0;" rows="8" cols="80" name="message" id="message" tabindex="1"></textarea>

					</div>
					<div class="editor_control_bar" style="width: 95%; padding: 4px; margin-top: 3px; display: none;" id="quickreply_multiquote">
						<span class="smalltext">
							Du hast einen oder mehrere Beiträge zum Zitieren ausgewählt. <a href="./newreply.php?tid=35&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">Zitiere diese Beiträge jetzt</a> oder <a href="javascript:Thread.clearMultiQuoted();">wähle sie ab</a>.
						</span>

					</div>
				</td>
			</tr>
			
			<tr>
				<td colspan="2" align="center" class="tfoot"><input type="submit" class="button" value="Antwort schreiben" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button" name="previewpost" value="Beitragsvorschau" tabindex="3" /></td>
			</tr>
		</tbody>
	</table>

</form>
<!-- end: showthread_quickreply -->

Sorry for this bunch of code.

Here also is a screenshot of what it looks like:
I've got the same problem, deactivated the advanced quickreply for now Sad
Is there no solution till now? HuhT
No, nobody seems to have a proper fix
I now found a working fix for this:

Open the Template "showthread_quickreply",

Find:

Quote:<textarea style="width: 100%; padding: 4px; margin: 0;" rows="18" cols="80" name="message" id="message" tabindex="1"></textarea>

Replace with:

Quote:<textarea rows="18" cols="80" name="message" id="message" tabindex="1"></textarea>

Thanks to krafdi for this solution Wink