How to add affiliates on phpBB?

If you mean like on FP, it's just a CSS background image, with smaller images (the buttons) being structured on top of it.
 
You just need to create a custom box in your overall_footer.html file (this will display them site wide) with your HTML values in that file and your CSS values in the colours.css file.
 
would it not be easier to add them as simple links to your overall_footer.html file

a bit like this
Code:
	<a rel="external" href="http://www.beyondthepitch.net"> <img src="./images/links/BTP.gif" alt="" /></a>

This basically states the URL and an image for the link. The image is stored in your images folder in a subfolder called "links"
 
Saint said:
would it not be easier to add them as simple links to your overall_footer.html file

a bit like this
Code:
	<a rel="external" href="http://www.beyondthepitch.net"> <img src="./images/links/BTP.gif" alt="" /></a>

This basically states the URL and an image for the link. The image is stored in your images folder in a subfolder called "links"
... this would be the correct way of doing it.
Code:
<a href="LINK" target="_blank"><img src="DOMAIN/images/links/BTP.gif" alt="ALT TEXT" /></a>

...Rel doesn't work.
 
Desireful said:
...rel="" works for something like the do-follow on links 😉
Didn't for me when I inserted the link into my phpbb footer. 😉
 
Code:
<table width="100%" border="0" cellspacing="1" cellpadding="4">
<tr>
<th align="center" class="titlemedium" width="70%">&nbsp;</th>
<th align="center" class="titlemedium" width="30%">&nbsp;</th>
</tr><tr>
<td class="row4" align="center" width="70%"><marquee onmouseover="this.stop()" onmouseout="this.start()"><a href="http://www.invisionfree.com/"><img src="http://209.85.62.23/style_images/1/logo4.gif" alt="Invision Free" border="0"></a></marquee></td>
<td class="row4" width="30%"><a href="http://www.invisionfree.com/"><img src="http://209.85.62.23/style_images/1/logo4.gif" alt="Invisionfree" border="0"></a>
<br><textarea disable><a href="http://www.invisionfree.com/L"><img src="http://209.85.62.23/style_images/1/logo4.gif" alt="Invision Free" border="0"></a></textarea></td>
</tr><tr>
<td class='darkrow2' colspan="5">&nbsp;</td>
</tr>

</table>

...is their HTML.
 
Back
Top Bottom