Craig,
There was a post about adding images(icons) to rakeback offers but it got deleted when this 2nd version of forum was launched. Do you have that somewhere or can you explain it one more time?
Rok
Craig,
There was a post about adding images(icons) to rakeback offers but it got deleted when this 2nd version of forum was launched. Do you have that somewhere or can you explain it one more time?
Rok
The following has been updated to reflect changes in PAS V3 CMS.
To quickly summarize, the icons can be seen at Play US Poker on the left side bar.
We have made these icons available to all our publishers using the path:
<img src="{{ tld }}/images/icons/icon_{{ offer.image_id }}.gif" border="0" />
To add icons, use the following snippets and paste into layout > layout.html
Rakeback Offers:
Bonus Offers:<div id="pas_nav_offers">
<table cellspacing="0" class="pas_stripe">
<thead>
<tr>
<th colspan="3">
Rakeback Offers
</th>
</tr>
</thead>
<tbody>
{% for offer in rb_offers %}
<tr class="offer" link="{{ offer.review_page }}">
<td><a href="{{ offer.review_page }}"><img src="{{ tld }}/images/icons/icon_{{ offer.image_id }}.gif" border="0" /></a></td>
<th><a href="{{ offer.review_page }}">{{ offer.name }}</a></th>
<td class="percentage">{{ offer.reward }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div id="pas_nav_offers">
<table cellspacing="0" class="pas_stripe">
<thead>
<tr>
<th colspan="2">Bonus Offers</th>
</tr>
</thead>
<tbody>
{% for offer in bonus_offers %}
<tr class="offer" link="{{ offer.review_page }}">
<td><a href="{{ offer.review_page }}"><img src="{{ tld }}/images/icons/icon_{{ offer.image_id }}.gif" border="0" /></a></td>
<th class="bonus"><a href="{{ offer.review_page }}">{{ offer.name }}</a><br/>
{{ offer.reward }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
Poker Affiliate Solutions Design Department
No that doesn't work for me at all. I basically get all of the graphics but then the grid appears underneath??
Any ideas on where I'm going wrong?
If you post or pm your url ill take a look
Poker Affiliate Solutions Design Department
thank you, it works great and the result looks much better
Please have a look at my new site rakeback.pokertower.net I've added the icons and they are appearing but there is one little problem with the nav rakeback and bonus offer. As you can see the green fields in the nav-heads are to short. How can I fix this?
change
to<th colspan="2"> Rakeback Deals </th>
same for bonus offers<th colspan="3"> Rakeback Deals </th>
Poker Affiliate Solutions Design Department
That's it. Many thanks!