| Re: How can i put altiliates at bottom This is not a mod but an extra table with some Javascript.
in the overall_header.tpl file add this
[code:1:0fcfa59cb6]<SCRIPT LANGUAGE="javascript">
nereidFadeObjects = new Object();
nereidFadeTimers = new Object();
function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){ //do this so I can take a string too
setTimeout("nereidFade("+object+",& quot;+destOp+","+rate+","+delt a+")",0);
return;
}
clearTimeout(nereidFadeTimers[object.sourceIndex]) ;
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
nereidFadeObjects[object.sourceIndex]=object;
nereidFadeTimers[object.sourceIndex]=setTimeout(&q uot;nereidFade(nereidFadeObjects["+object.sou rceIndex+"],"+destOp+","+rate+ ","+delta+")",rate);
}
}
if (document.images) {
var offimg = new Array()
offimg["cool"] = new Image(120,50)
offimg["cool"].src = "[INSERT]"
function imageOn(imgName) {
if (document.images) {
document.images[imgName].src = onimg[imgName].src
}
}
function imageOff(imgName) {
if (document.images) {
document.images[imgName].src = offimg[imgName].src
}
}
function setMsg(msg) {
window.status = msg
return true
}
function playIt() {
}
}
</Script>[/code:1:0fcfa59cb6]
and in the index_body.tpl file add this. preferably at the bottom of the page.
[code:1:0fcfa59cb6]<br clear="all" />
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="28"><span class="cattitle">Affiliates</span></td>
</tr>
<tr>
<td width="100%" valign="bottom">
<a href="http://www.griffin-webpages.com/design" target="_blank"><img border="0" src="http://www.griffin-webpages.com/affiliates/mariela.jpg" style="filter:alpha(opacity=20)" onmouseover="nereidFade(this,100,30,10)" onmouseout="nereidFade(this,30,50,5)" border="0" align="top" width="88" height="31"></a>
<a href="http://www.triplel.clanz.biz" target="_blank"><img border="0" src="http://www.griffin-webpages.com/affiliates/triplellaffbutton2.gif" style="filter:alpha(opacity=20)" onmouseover="nereidFade(this,100,30,10)" onmouseout="nereidFade(this,30,50,5)" border="0" align="top" width="88" height="31"></a>
<a href="http://www.rebelsigs.clanz.biz" target="_blank"><img border="0" src="http://www.griffin-webpages.com/affiliates/rebelaff.jpg" style="filter:alpha(opacity=20)" onmouseover="nereidFade(this,100,30,10)" onmouseout="nereidFade(this,30,50,5)" border="0" align="top" width="88" height="31"></a>
</td>
</tr>
</table>
<table width="100%" cellpadding="1" cellspacing="1" border="0">
<tr>
<td align="left" valign="top"><span class="gensmall"><a href="http://www.griffin-webpages.com/forum/viewtopic.php?t=48" class="gensmall">Click here to Affiliate with me</a></span></td>
</tr>
</table>[/code:1:0fcfa59cb6] |