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

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]

1How to put Affiliates under the footer  Empty How to put Affiliates under the footer Thu Nov 18, 2010 10:05 pm

Matti

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

http://csshelp.forumotion.net/

Neyra

Neyra
Registered Member
Registered Member
Displey-General-overall_footer

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

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

Emilio

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

http://www.graphilicious.forumotion.Com

Matti

Matti
Registered Member
Registered Member
Yes for phpbb3

http://csshelp.forumotion.net/

Guest


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

Matti

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

http://csshelp.forumotion.net/

ankillien

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()">

Matti

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.

http://csshelp.forumotion.net/

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>

Matti

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

http://csshelp.forumotion.net/

Matti

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.

http://csshelp.forumotion.net/

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()">

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> ';};">

Guest


Guest
...

Sponsored content


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