Page 1 of 1
[Solved] Quick Question

Posted:
Mon Jan 22, 2007 4:53 am
Author: Tw3nt
Your phpBB Version: 2.0.
phpBB Type: phpBB / IMPortal
MODs: Yes
Your knowledge: Basic Knowledge
Board URL: [url]http://[/url]
PHP Version:
MySQL Version:
What was done before the problem appeared?
What was done to try to solve the problem?
De.scription and Message
Hi,
My question is, is there a way to place the phpbb copyright info etc. at the absolute bottom of the im portal?
I tried finding a way about this but it is never on the exact bottom and it is slightly aligned on the right if I view the forum.
I hope this makes sense.

Posted:
Mon Jan 22, 2007 9:57 pm
Author: IntegraMOD
Try editing overall_footer.tpl in your template/style directory

Posted:
Thu Jan 25, 2007 9:24 pm
Author: Tw3nt
That was the first thing I tried editing, no matter what I do it always stays to the right of the portal.
Between center block and right block.
Re: Quick Question

Posted:
Thu Jan 25, 2007 11:24 pm
Author: Teelk
Do you have a link to your site? That way I can look at the source code.
Re: Quick Question

Posted:
Fri Jan 26, 2007 1:28 am
Author: Teelk
I can't seem to get it to align to the bottom either. But, I can center it, do the following...
Open templates/yourtemplate/overall_footer.tpl
FIND
- Code: Select all
</table><div><span><br><br><We>Powered by <a>phpBB</a> © 2001, 2005 phpBB Group<br></span></div>
REPLACE WITH
- Code: Select all
</table>
FIND - this is the last </table> tag in the file.
- Code: Select all
</table>
AFTER ADD
- Code: Select all
<div><span><br><br><We>Powered by <a>phpBB</a> © 2001, 2005 phpBB Group</span></div>
Re: Quick Question

Posted:
Fri Jan 26, 2007 1:53 am
Author: Tw3nt
This is what I have in my tpl, i think the code is different to the one you supplied.
- Code: Select all
<div><span><br>{ADMIN_LINK}<br><We>Powered by <a>phpBB</a> © 2001, 2005 phpBB Group<br>{TRANSLATION_INFO}</span></div> </td> </tr></table> </body></html>
Re: Quick Question

Posted:
Fri Jan 26, 2007 2:04 am
Author: Teelk
Sorry, yes, I was using the source from your page so it'll be different.
Basically, just move the div below the last closing table tag and it should center for you.

Posted:
Fri Jan 26, 2007 2:06 am
Author: Tw3nt
Hmm if you look at my site again it looks the same to me.
Re: Quick Question

Posted:
Fri Jan 26, 2007 2:42 am
Author: Teelk
Sorry, should have been more specific. Do the following...
OPEN templates/yourtemplate/overall_footer.tpl
FIND AND DELETE
- Code: Select all
<div><span><br>{ADMIN_LINK}<br> <We> Powered by <a>phpBB</a> © 2001, 2005 phpBB Group<br>{TRANSLATION_INFO}</span></div>
FIND - the last closing table tag
- Code: Select all
</table>
AFTER ADD
- Code: Select all
<div><span><br>{ADMIN_LINK}<br> <We> Powered by <a>phpBB</a> © 2001, 2005 phpBB Group<br>{TRANSLATION_INFO}</span></div>

Posted:
Fri Jan 26, 2007 4:42 am
Author: Tw3nt
Cool, this is exactly what I wanted - but now I got another problem, if I was to say add the cracker tracker footer code, it doesn't show up but the space is put there.
Re: Quick Question

Posted:
Fri Jan 26, 2007 4:47 am
Author: Teelk
Hmmm... this change shouldn't give you those kinds of issues. What is the code you're trying to add to the footer?
Re: Quick Question

Posted:
Fri Jan 26, 2007 4:50 am
Author: Tw3nt
This part. I have never had these problems before so I don't really understand why it isn't working properly.
- Code: Select all
##-----[ OPEN ]------------------------------------------#templates/subSilver/overall_footer.tpl ##-----[ FIND ]------------------------------------------#<div><span><br>{ADMIN_LINK}<br> ##-----[ AFTER, ADD ]------------------------------------------#<BEGIN>{L_STATUS_LOGIN}<br><br><END>{CRACKER_TRACKER_FOOTER}<br><br>
Re: Quick Question

Posted:
Fri Jan 26, 2007 5:37 am
Author: Ma®©uS
Possibly 1 of 2 things:
Either you're missing the CT code in includes/page_tail.php that shows it, or you've placed in inside a switch accidentally, so it won't recognise the { } stuff, only the breaks.
If neither, you need to paste your overall_footer.tpl to be checked by someone as Source code won't show somethings that might cause the blank space.

Posted:
Fri Jan 26, 2007 5:53 am
Author: Tw3nt
Page_tail was the problem, must of uploaded the wrong one...ta for the help.