MyBB Community Forums

Full Version: Webvolution Theme - New Thread Border Problems
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I'm at the screen to create a new thread, everything is messed up. The border for the text area is very small width wise and other features are messed up. However, New Reply is fine.

New Thread:
[Image: newthreado.th.png]

New Reply:
[Image: newreplys.th.png]

--
Here's the code my my newthread template:
<html>
<head>
<title>{$lang->newthread_in}</title>
{$headerinclude}
<script type="text/javascript" src="jscripts/post.js?ver=1400"></script>
</head>
<body>
{$header}
{$preview}
{$thread_errors}
{$attacherror}
<form action="newthread.php?fid={$fid}&amp;processed=1" method="post" enctype="multipart/form-data" name="input">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<!-- first table -->
<table border="0" cellspacing="1" cellpadding="1" class="postpad_h">
	<tr>
		<td class="thead"><strong>{$lang->post_new_thread}</strong></td>
	</tr>
	<tr>
		<td class="postpad">
			<table border="0" class="varpad" cellpadding="0" cellspacing="0">
				<tr>
					<td>Title:<br/><input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
				</tr>
				<tr>
					<td>Message:<br/>
					<textarea rows="20" cols="70" id="message" name="message">{$message}</textarea>						
					<br/>   {$smilieinserter} 
						{$posticons}
						{$codebuttons}
						{$multiquote_external}
					</td>
				</tr>
			</table>
		</td>
	</tr>
	<tr>	
		<td align="center" valign="middle" height="30px"><div style="text-align:center"><input type="submit" class="button" name="submit" value="{$lang->post_thread}" tabindex="4" accesskey="s" />  <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="5" />{$savedraftbutton}</div>
<input type="hidden" name="action" value="do_newthread" />
<input type="hidden" name="posthash" value="{$posthash}" />
<input type="hidden" name="attachmentaid" value="" />
<input type="hidden" name="attachmentact" value="" />
<input type="hidden" name="quoted_ids" value="{$quoted_ids}" />
<input type="hidden" name="tid" value="{$tid}" />
{$editdraftpid}
		</td>
	</tr>
</table>
<!-- /first table -->
<br/>
<!-- second table-->
<table border="0" cellpadding="1" cellspacing="1" class="postpad_h">
	<tr>
		<td class="thead">Additional Options</td>
	</tr>
		<td class="postpad">
			<table border="0" cellpadding="0" cellspacing="0" class="varpad">
				<tr>
					<td><fieldset><legend>Miscellaneous Options</legend>
					<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" tabindex="7"{$postoptionschecked['signature']} /> {$lang->options_sig}</label>{$disablesmilies}</fieldset>
					</td>
				</tr>
				{$attachbox}
				&nbsp;{$modoptions}
				{$subscriptionmethod}
				{$pollbox}
				{$captcha}
			</table>
		</td>
	</tr>
	<tr>
		<td align="center" valign="middle" height="30px"><div style="text-align:center"><input type="submit" class="button" name="submit" value="{$lang->post_thread}" tabindex="4" accesskey="s" />  <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="5" />{$savedraftbutton}</div>
<input type="hidden" name="action" value="do_newthread" />
<input type="hidden" name="posthash" value="{$posthash}" />
<input type="hidden" name="attachmentaid" value="" />
<input type="hidden" name="attachmentact" value="" />
<input type="hidden" name="quoted_ids" value="{$quoted_ids}" />
<input type="hidden" name="tid" value="{$tid}" />
{$editdraftpid}
</form>	</td>
	</tr>
</table>	
{$forumrules}
{$footer}
</body>
</html>

Can anyone help me resolve this problem?
Text box size is 40, try making it 70

your code
                <tr>
                    <td>Title:<br/><input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
                </tr>