Symon
|
Affiliates Table / Friends LinkSo This Is HOWTODOIT
Please remember to use the Editor account before making any template changes, If you have not made an editor account yet please read HERE
Second you must have all ready a template you can edit.
If you have not done this please read HOWTODOIT
To add an affiliates table like the one i have on here at the bottom then you need to add
into allow HTML tags in general - admin - configuration
OK the first one is the advertise button
Place the following codes where you wish it to be for example overall footer.tpl
| Code: | | <center><img src="http://i24.photobucket.com/albums/c28/ghosthousegang/new%20clipart/6b4e5547.gif" border="0" title=" PM The Admin If You Wish To See Your Site Here"></a> |
Now this is the code you need to have a scrolling pic link now all you have to do is copy and paste then change the links to suit you also don`t forget to change the mouse over text title=
| Code: | | <marquee scrollamount=5 onMouseover="this.scrollAmount=0" onMouseout="this.scrollAmount=5"> <a href="http://forum.myfreeforum.org/index.php" title=" Click Here To Create Your Own Free Forum"><img src="http://i24.photobucket.com/albums/c28/ghosthousegang/8bd81423.gif" width="190" height="57"> <a href="http://www.farnboroughinvincibles.co.uk" title="Click Here For Farnborough Invincibles"><img src="http://farnboroughinvincibles.co.uk/templates/myff_farnboroughinvincibles1/images/logo.jpg" width="190" height="57"></a></marquee> |
now remember if you want to add more links then you just need to add another line of code like below
| Code: | | <a href="http://forum.myfreeforum.org/index.php" title=" Click Here To Create Your Own Free Forum"><img src="http://i24.photobucket.com/albums/c28/ghosthousegang/8bd81423.gif" width="190" height="57"> and add it just before </a> |
This is for the drop down bar
First You Must add this code in overall_header.tpl just after the tag
| Code: | <SCRIPT TYPE="text/javascript">
<!--
function dropdown(mySel)
{
var myWin, myVal;
myVal = mySel.options[mySel.selectedIndex].value;
if(myVal)
{
if(mySel.form.target)myWin = parent[mySel.form.target];
else myWin = window;
if (! myWin) return true;
myWin.location = myVal;
}
return false;
}
//-->
</SCRIPT>
|
Then just add this where you want it
| Code: | <FORM
ACTION="../cgi-bin/redirect.pl"
METHOD=POST onSubmit="return dropdown(this.gourl)">
<SELECT NAME="gourl">
<OPTION VALUE="">List Of Forums...
<OPTION VALUE="http://forum.myfreeforum.org/index.php" target=blank>MY Free Forum
<OPTION VALUE="http://www.farnboroughinvincibles.co.uk" target=blank>Farnborough Invincibles
<OPTION VALUE="http://howtodoit.myfreeforum.org" target=blank>howtodoit
<OPTION VALUE="http://theghosthousegang.myfreeforum.og" target=blank>Theghosthousegang
</SELECT>
<INPUT TYPE=SUBMIT VALUE="Visit Site">
</FORM> |
If you wish to add more then add
| Code: | | <OPTION VALUE="http://howtodoit.myfreeforum.org" target=blank>howtodoit |
Just before
|