Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post 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....
 



 
tc1967ukSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post 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.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
Can anyone help, in how to actually remove the footer section and replace it with an image instead?
 



 
tc1967ukSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
do u have the image?
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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: 8783 Time(s)

footer_ends.png

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

footer02.png


 



 
tc1967ukSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
Zuker (or anyone), any ideas on how to implement this?
 



 
tc1967ukSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
Go in overall_footer for the template and add the image in.  
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 



 
tc1967ukSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
its not php in that file  
It's basic html.  
 



 
Press 22Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
Thanks, but that doesn't help me either.  Can anyone help with what I actually need to do?
 



 
tc1967ukSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
sorry brother
i'll play with it in a minutes
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Amending Copyright Info In Footer 
 
Thanks Zuker, it worked great on Firefox, but the text image isn't centred in IE.  Any ideas?
 



 
tc1967ukSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 



 
pepiSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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>

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron