Registration Failed »  Show posts from    to     

Icy Phoenix


Old Support Topics - Registration Failed



elvamo [ Thu 29 Sep, 2011 03:36 ]
Post subject: Registration Failed
Español
Spoiler: [ Show ]





English
Spoiler: [ Show ]


Hans [ Thu 29 Sep, 2011 04:06 ]
Post subject: Re: Registration Failed
I did notice that on my board also. Seems it only does it above a certain resolution.

One of these guys around here might know a way of tweaking the CSS on the to stop at a maximum size though. Just a theory though.


Joshua203 [ Thu 29 Sep, 2011 09:31 ]
Post subject: Re: Registration Failed
Hi to the two of you,

A little search on the forum (because I'm sure I have seen this somewhere before) brought me to THIS TOPIC

Maybe it contains the fix?

PS ...Maybe you should also look at the size of the buttons at the bottom .. they are simply too big with all that text to be in one line


mort [ Thu 29 Sep, 2011 13:55 ]
Post subject: Re: Registration Failed
Those "Old" fixes are not much better.

It's IP and the old crappy markup that phpBB used to limit table width rather than pad it, and used <br />'s rather than <p>'s. And I think I've got this right - - - - - BOOM!

agreement.tpl

Find:

Code: [Hide] [Select]
<table width="80%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<td align="left">
<br /><div class="post-text"><span class="genmed">{AGREEMENT}</span></div><br /><br /><br />
<br /><div class="post-text"><span class="genmed">{L_PRIVACY_DISCLAIMER}</span></div><br /><br /><br />
<label><input type="checkbox" name="privacy" /> {AGREE_CHECKBOX}</label><br /><br />
</td>
</tr>
</table>



Replace with:


Code: [Hide] [Select]
<table width="100%" cellspacing="1" cellpadding="1" border="0" align="center">
<tr>
<td style="padding: 0 50px 0 50px;">
<br /><p class="post-text"><span class="genmed">{AGREEMENT}</span></p><br /><br /><br />
<br /><p class="post-text"><span class="genmed">{L_PRIVACY_DISCLAIMER}</span></p><br /><br /><br />
<label><input type="checkbox" name="privacy" /> {AGREE_CHECKBOX}</label><br /><br />
</td>
</tr>
</table>


Hans [ Thu 29 Sep, 2011 19:20 ]
Post subject: Re: Registration Failed
This code here from that thread does work.

Code: [Hide] [Select]
{ERROR_BOX}
<form method="post" action="{S_AGREE_ACTION}">
{IMG_THL}{IMG_THC}<span class="forumlink">{SITENAME} - {REGISTRATION}</span>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="row1g" align="center">
<table width="80%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<td align="left">
<br /><div class="post-text"><span class="genmed">{AGREEMENT}</span></div><br /><br /><br />
<br /><div class="post-text"><span class="genmed">{L_PRIVACY_DISCLAIMER}</span></div><br /><br /><br />
<div class="post-text" align="center"><br /><label><input type="checkbox" name="privacy" />&nbsp;{AGREE_CHECKBOX}</label><br /></div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="cat">
{S_HIDDEN_FIELDS}
<input type="submit" name="not_agreed" value="{DO_NOT_AGREE}" class="liteoption" />
<input type="submit" name="agreed" value="{AGREE_OVER_13}" class="mainoption" />
</td>
</tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</form>


I tried the edit Mort suggested but still goes off to lala-land when stretched, the code above keeps the box where it needs to be though.


mort [ Fri 30 Sep, 2011 01:12 ]
Post subject: Re: Registration Failed
Hans wrote: [View Post]
I tried the edit Mort suggested but still goes off to lala-land when stretched, the code above keeps the box where it needs to be though.


The Real problem is here - Fixed width where it really ought to be fluid. Because you may have not noticed - The block of text is all squashed to the left.

Code: [Hide] [Select]
.post-text {
max-width: 740px !important;
}


I could say more - but I already said it here ->

http://www.icyphoenix.com/viewtopic.php?p=53919#p53919





Powered by Icy Phoenix