Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Banners between listings

Quote Reply
Banners between listings
Is there a way to display banners or ads between listings? My category pages show 20 links per page, I would like to display banners after 10 links. I'd appreciate any ideas or suggesstions.
Quote Reply
Re: [Thomas.] Banners between listings In reply to
You can quite easily if using a loop to display links. eg...
Code:
<%ifnot loop_num % 10%>
.. banner code ..
<%endif%>
Quote Reply
Re: [Paul] Banners between listings In reply to
Thanks Paul! I just added the following code to the loop:

Code:
<%if row_num eq 10%>
.. banner ..
<%endif%>

Last edited by:

Thomas.: Jun 22, 2003, 5:14 PM