SpellCheck button to far right

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment! No new topics are allowed in this forum.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: MOD Development Forum rules

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.
Locked
Kerrith
Registered User
Posts: 490
Joined: Mon Mar 28, 2005 10:16 am
Location: Pahoa, Hawaii
Contact:

SpellCheck button to far right

Post by Kerrith »

phpBB 2.0.20 and PHPSpell version 1.06p.

I just installed 1.06p on a newly created forum. I have another phpBB forum Version 2.0.20 on which l have PHPSpell version 1.06.

Everything works fine with 1.06p except that the SpellCheck button is to the far right rather than aligned under the message window.

The code that I think this pertains to on posting_body.tpl looks like this:

<tr>
<td colspan="9"><span class="gen">
<textarea name="message" rows="15" cols="35" wrap="virtual" style="width:450px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{MESSAGE}</textarea>
</span></td>
</tr>
<tr><td colspan="9" align="right">
<input type="button" class="mainoption" value="SpellCheck" name="button" onclick="openspell();">
</td></tr>
</table>
</span></td>
</tr>

I have the diags loaded and can't see anything wrong. or,, anything different from the 1.06 pasting_body.tpl.

I'm at a loss as to how to fix it. It's really only cosmetic but still....

Suggestions?

Thanks,

Kerry

Here's the URLs to the forum.

http://managercoaching.com/forum/viewtopic.php?p=24#24

http://managercoaching.com/forum/spelli ... _diags.php
User avatar
NGLeader
Registered User
Posts: 88
Joined: Fri Mar 14, 2003 12:04 am
Location: New York, N.Y.
Contact:

Post by NGLeader »

Kerrith:

If you want someone to help you, Setup a test account on your forum. This way whoever is helping you don't have to register.

PS: Nice UBB Board. 8O
Kerrith
Registered User
Posts: 490
Joined: Mon Mar 28, 2005 10:16 am
Location: Pahoa, Hawaii
Contact:

Post by Kerrith »

Hi NGLeader,

Thanks for the nice ack, we've had that UBB board for about 5 years.

Here's URL to the Test Account No registration required.

Kerry
User avatar
mr.boo
Registered User
Posts: 70
Joined: Mon Apr 10, 2006 4:21 am
Location: Indonesia

Post by mr.boo »

Kerrith,

First, you're post on wrong forum :)

Second, look at

<tr><td colspan="9" align="right">
<input type="button" class="mainoption" value="SpellCheck" name="button" onclick="openspell();">
</td></tr>

just delete align="right"
or replace it with align="center" (center justify)
User avatar
NGLeader
Registered User
Posts: 88
Joined: Fri Mar 14, 2003 12:04 am
Location: New York, N.Y.
Contact:

Post by NGLeader »

I use to have the same problem, If I remember right I thing that I had to change something in that line of code.

Here mine:

Code: Select all

		<tr>
			<td colspan="9" align="right">
     				<input type="button" class="mainoption" value="Spell Checker" name="button" onclick="openspell();">
			</td>
		</tr>
Add that above code after this code in posting.php

Code: Select all

		<tr>
			<td><textarea name="message" rows="15" cols="76" wrap="virtual" style="width:450px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{MESSAGE}</textarea></td>
		</tr>
Hope that works.
User avatar
drathbun
Former Team Member
Posts: 12204
Joined: Thu Jun 06, 2002 3:51 pm
Location: TOPICS_TABLE
Contact:

Post by drathbun »

MOD Support questions go in the appropriate MOD topic. If you downloaded the MOD here, then it will either be in the MOD Releases forum, or the MOD Development forum, depending on the status of the code.

If you're not sure where the MOD is, you can use the MOD Search tool to try to find it.

Note that you cannot start a "new" topic in the MOD Releases forum, you must reply to an existing topic. Please find the appropriate topic and post your question there, thanks.

Closing this topic.
I blog about phpBB: phpBBDoctor blog
Still using phpbb2? So am I! Click below for details
Image
Locked

Return to “[2.0.x] MODs in Development”