MyBB Theme Bugged

Ashley S

Paragon
Joined
Jun 7, 2010
Messages
2,074
Reaction score
34
FP$
501
I have a specific MyBB theme for 1.4x but i am using MyBB 1.6
Which shouldn't be the problem, But when i go to create a new thread i get this bugged up template

Preview Images: http://i52.tinypic.com/r7vyn8.png > http://i56.tinypic.com/9kxcaf.png

Heres my 'New Thread' template
Code:
<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}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 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}
				{$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}
		</td>
	</tr>
</table>
<!-- /first table -->
<br/>
<!-- second table-->
<table border="0" cellpadding="1" cellspacing="1" class="postpad_h">
	<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>

If your willing to help over MSN then please send me a PM and i will give you my e-mail.
Thank you!
 
One tip I can give you is switching that specific template to the default.

You do that by clicking the button besides it and instead of choosing edit choose switch to default(I think thats what it says).

If this does not solve the problem post back with any changes and results.
 
I experience with this problem before and never got the solution. Tried asking the designer and he never responded back. Try copying the codes after the panel attribute from the default theme and pasting it to the theme's template.
 
Back
Top Bottom