WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1 How to put Affiliates under the footer on Thu Nov 18, 2010 8:35 pm

Matti


Registered Member
Registered Member
Hi, Guys

I need a code to put affiliates under the footer I'm using phpBB3 like always Very Happy

2 Re: How to put Affiliates under the footer on Thu Nov 18, 2010 9:19 pm

Neyra


Registered Member
Registered Member
Displey-General-overall_footer

Copy the affiliate code below <!-- END html_validation -->

http://html-dizajn.coolbb.net/

3 Re: How to put Affiliates under the footer on Thu Nov 18, 2010 9:29 pm

Emilio


Registered Member
Registered Member
Won't work , he has Phpbb3 .
no template editing

http://www.graphilicious.forumotion.Com

4 Re: How to put Affiliates under the footer on Thu Nov 18, 2010 11:42 pm

Matti


Registered Member
Registered Member
Yes for phpbb3

5 Re: How to put Affiliates under the footer on Thu Nov 18, 2010 11:51 pm

Guest


Guest
Maki.. i think i gave a code before xD right?

6 Re: How to put Affiliates under the footer on Fri Nov 19, 2010 12:50 am

Matti


Registered Member
Registered Member
Gangstar15 wrote:Maki.. i think i gave a code before xD right?


No, cuz i said to you i don't need it any more but now i need the code so if you have the code can you please post here. Very Happy

7 Re: How to put Affiliates under the footer on Sat Nov 20, 2010 8:34 am

ankillien


Administrator
Administrator
Here is the code

Code:
<script>function footer () {a = document.getElementById("page-footer").innerHTML;document.getElementById("page-footer").innerHTML = a + '<center><b>Powered by <a href="http://forumotion.com/"><font color="#3399FF">Foru</font><font color="#33CC33">motion</font></a>  Copyright © 2009 - 2010  |  Makis Test Forum</b></center> ';}</script><body onload="footer()">

8 Re: How to put Affiliates under the footer on Sat Nov 20, 2010 5:29 pm

Matti


Registered Member
Registered Member
anki, this code is for Copyright but i don't need this i need a code so i can put affiliate button under the footer.

9 Re: How to put Affiliates under the footer on Sat Nov 20, 2010 5:34 pm

Guest


Guest
Its the same...
just change:
Code:
<b>Powered by <a href="http://forumotion.com/"><font color="#3399FF">Foru</font><font color="#33CC33">motion</font></a>  Copyright © 2009 - 2010  |  Makis Test Forum</b>


too:
Code:
<a href="FORUM LINK"><img src="FORUM BUTTON" border="0"></a>

10 Re: How to put Affiliates under the footer on Sat Nov 20, 2010 6:04 pm

Matti


Registered Member
Registered Member
I think I got it mods please don't lock this yet.

11 Re: How to put Affiliates under the footer on Tue Nov 23, 2010 10:47 pm

Matti


Registered Member
Registered Member
Guys, I don't want this where it says Powered by forumotion all of that I just want it like in the box so I can add borders & Bg.

12 Re: How to put Affiliates under the footer on Tue Nov 23, 2010 11:11 pm

Guest


Guest
Code:

<script>function footer () {a = document.getElementById("page-footer").innerHTML;document.getElementById("page-footer").innerHTML = a + '<div style="CSS CODES"><a href="LINK"><img src="IMAGE"></a></div> ';}</script><body onload="footer()">

13 Re: How to put Affiliates under the footer on Wed Nov 24, 2010 3:56 am

Guest


Guest
Gangstar15 wrote:
Code:
<script>function footer () {a = document.getElementById("page-footer").innerHTML;document.getElementById("page-footer").innerHTML = a + '<div style="CSS CODES"><a href="LINK"><img src="IMAGE"></a></div> ';}</script><body onload="footer()">

I keep looking at this code and wondering how it will work reliably on a phpBB3 board. An extra BODY tag will cause rendering errors in Opera and Internet Explorer, and also with Firefox depending on the DOCTYPE. It will run in Chrome, but I don't consider that a good thing since two BODY tags in a document is an obvious HTML error, and I don't want to use a browser that doesn't know how to catch such a blatant error.

Anyway, the above code can be made to run faster (assuming you're using a browser that allows two BODY tags Very Happy ) by directly attaching the function to the BODY tag, as follows:

Code:
<body onload="function() {a = document.getElementById("page-footer").innerHTML;document.getElementById("page-footer").innerHTML = a + '<div style="CSS CODES"><a href="LINK"><img src="IMAGE"></a></div> ';};">

14 Re: How to put Affiliates under the footer on Wed Nov 24, 2010 9:16 pm

Guest


Guest
...

View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum