MyBB Community Forums

Full Version: Thread Not Displaying Correctly When "logged in"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I've come across this annoying bug, where my thread display is not showing correctly, basically theres a scroll over bar at the bottom of the screen which is not supposed to be there. Here's some images of what I mean
[Image: 2_20_07_12_1_36_18.jpeg]
[Image: 2_20_07_12_1_37_48.jpeg]

This only happens when you view a thread, I've tested this in firefox, opera, IE, chrome...
Ive also noticed thread display is fine when logged out, but when youre logged in scroll issue comes into play. it also doesnt matter what theme i use this happens.

Thanks for any help you can give,
heres a link
http://thecrypt.org/bb/
Can you please provide a user test account?
yes,

login: bbtest
pass: bbtest

just to add
when i made the test group/account I made it so you couldnt post threads or reply... and the scroll wasnt happening. I checked reply to threads and now the scroll is happening.. perhaps it has to do with the quick reply function?
Yes, it's the quick reply box. Can you please post your showthread_quickreply template?
Here's what I have for showthread_quickreply

<br />
<form method="post" action="newreply.php?tid={$tid}&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
	<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
	<input type="hidden" name="subject" value="RE: {$thread['subject']}" />
	<input type="hidden" name="action" value="do_newreply" />
	<input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
	<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
	<input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
	<input type="hidden" name="from_page" value="{$page}" />
	<input type="hidden" name="tid" value="{$tid}" />
	<input type="hidden" name="method" value="quickreply" />

	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
		<thead>
			<tr>
				<td class="thead" colspan="2">
					<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['quickreply']}.gif" id="quickreply_img" class="expander" alt="[-]" title="[-]" /></div>
					<div><strong>{$lang->quick_reply}</strong></div>
				</td>
			</tr>
		</thead>
		<tbody style="{$collapsed['quickreply_e']}" id="quickreply_e">
			<tr>
				<td class="trow1" valign="top" width="22%">
					<strong>{$lang->message}</strong><br />
					<span class="smalltext">{$lang->message_note}<br /><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" {$postoptionschecked['signature']} />&nbsp;<strong>{$lang->signature}</strong></label><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span><br />{$clickablesmilies}

				</td>
				<td class="trow1">
					<div style="width: 95%">
						<textarea style="width: 100%; padding: 4px; margin: 0;" rows="18" cols="80" name="message" id="message" tabindex="1"></textarea>
{$codebuttons}
					</div>
					<div class="editor_control_bar" style="width: 95%; padding: 4px; margin-top: 3px; display: none;" id="quickreply_multiquote">
						<span class="smalltext">
							{$lang->quickreply_multiquote_selected} <a href="./newreply.php?tid={$tid}&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">{$lang->quickreply_multiquote_now}</a> {$lang->or} <a href="javascript:Thread.clearMultiQuoted();">{$lang->quickreply_multiquote_deselect}</a>.
						</span>
					</div>

				</td>
			</tr>
			{$captcha}
			<tr>
				<td colspan="2" align="center" class="tfoot"><input type="submit" class="button" value="{$lang->post_reply}" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="3" /></td>
			</tr>
		</tbody>
	</table>
</form>
bump help!
bump.
<textarea style="width: 100%; padding: 4px; margin: 0px; visibility: hidden; position: absolute; top: -1000px; " rows="18" cols="80" name="message" id="message_old" tabindex="1"></textarea>

Find this and remove width:100%;
Thank you worked like a charm!