Amending Copyright Info In Footer


Subject: Amending Copyright Info In Footer
To try and reduce the number of spammers who may may search for terms like 'Icy Phoenix' and also 'phpBB', is it possible to replace the copyright section in the fotter with an image showing the same copyright info?

I understand that I'd lose info like Page Generation Time: 1.5621s (PHP: 98% SQL: 2%) SQL queries: 11 - Debug On - GZIP Enabled etc....

Profile PM  
Subject: Re: Amending Copyright Info In Footer
tc1967uk wrote: [View Post]
To try and reduce the number of spammers who may may search for terms like 'Icy Phoenix' and also 'phpBB', is it possible to replace the copyright section in the fotter with an image showing the same copyright info?

I understand that I'd lose info like Page Generation Time: 1.5621s (PHP: 98% SQL: 2%) SQL queries: 11 - Debug On - GZIP Enabled etc....

Of course you can.

Subject: Re: Amending Copyright Info In Footer
Can anyone help, in how to actually remove the footer section and replace it with an image instead?

Profile PM  
Subject: Re: Amending Copyright Info In Footer
do u have the image?

Subject: Re: Amending Copyright Info In Footer
I've just created one that may look ok. It would need to be central on the footer. Is it possible to have a similar image (without text) that would tag on at each end that could fill up the width of the page? I'll attach one for that one just in case.

Thanks for looking at this, Zucker.


footer_ends.png
Description:  
Filesize: 263 Bytes
Viewed: 9057 Time(s)

footer_ends.png

footer02.png
Description:  
Filesize: 6.63 KB
Viewed: 9057 Time(s)

footer02.png


Profile PM  
Subject: Re: Amending Copyright Info In Footer
Zuker (or anyone), any ideas on how to implement this?

Profile PM  
Subject: Re: Amending Copyright Info In Footer
Go in overall_footer for the template and add the image in. :mrblue:

Subject: Re: Amending Copyright Info In Footer
I should explain - I'm no good with php.

Can someone tell me please:

A) What code I would need to add to insert a graphic in the middle of the footer, plus a graphic either side of that to fill up to the side of the page no matter what size it was

B) What code I should take out to remove all the text that appears normally in the footer.


Thanks

Profile PM  
Subject: Re: Amending Copyright Info In Footer
its not php in that file :wink:
It's basic html. :mrblue:

Subject: Re: Amending Copyright Info In Footer
Thanks, but that doesn't help me either. Can anyone help with what I actually need to do?

Profile PM  
Subject: Re: Amending Copyright Info In Footer
sorry brother
i'll play with it in a minutes

Subject: Re: Amending Copyright Info In Footer
in your overall_footer.tpl

replace

Code: [Download] [Hide] [Select]
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td nowrap="nowrap" width="250" align="left">
<span class="copyright">&nbsp;Powered by <a href="http://www.icyphoenix.com/" target="_blank">Icy Phoenix</a> based on <a href="http://www.phpbb.com/" target="_blank">phpBB</a>{TRANSLATION_INFO}</span>
</td>
<td nowrap="nowrap" align="center">
<div style="text-align:center;">
<span class="generation"><b>{LOFI}</b></span>
<!-- BEGIN generation_time_switch -->
<span class="generation">{PAGE_GEN_TIME} <b>{GENERATION_TIME}s</b> (PHP: {PHP_PART}% SQL: {SQL_PART}%)</span><br />
<span class="generation">{SQL_QUERIES}: {NUMBER_QUERIES} - {DEBUG_TEXT} - {GZIP_TEXT}</span>
<!-- END generation_time_switch -->
</div>
</td>
<td nowrap="nowrap" width="250" align="right">
<span class="copyright">Design by <a href="http://www.mightygorgon.com" target="_blank">Mighty Gorgon</a>&nbsp;</span>
</td>
</tr>
</table>


with

Code: [Download] [Hide] [Select]
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td nowrap="nowrap" width="250" align="center" background="link of bg image">
<a href="www.icyphoenix.com" target="_blank"><img src="link of text image"/></a>
</td>
</tr>
</table>


notice that you have to replace

link of bg image and link of text image ;)

Subject: Re: Amending Copyright Info In Footer
Thanks Zuker, it worked great on Firefox, but the text image isn't centred in IE. Any ideas?

Profile PM  
Subject: Re: Amending Copyright Info In Footer
tc1967uk wrote: [View Post]
Thanks Zuker, it worked great on Firefox, but the text image isn't centred in IE. Any ideas?

Hi

try this
Code: [Download] [Hide] [Select]
<div align="center">
<table class="empty-table" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td nowrap="nowrap" align="center" background="link of bg image">
<a href="www.icyphoenix.com" target="_blank">
<img src="link of text image" border="0"/></a>
</td>
</tr>
</table></div>

Pepi

Subject: Re: Amending Copyright Info In Footer
add align="center" to the table & img

Code: [Download] [Hide] [Select]
<table class="empty-table" align="center" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td nowrap="nowrap" width="250" align="center" background="link of bg image">
<a href="www.icyphoenix.com" target="_blank"><img src="link of text image" align="center"/></a>
</td>
</tr>
</table>


Page 1 of 2


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.0925s (PHP: 22% SQL: 78%)
SQL queries: 16 - Debug Off - GZIP Enabled