Poker Affiliate Solutions Forum
  • Register
  • Help

Community Support Forum

+ Reply to Thread
Page 1 of 3 123 LastLast
Results 1 to 10 of 22

Thread: Adding icons

  1. #1
    Milf_Hunter is offline Baller
    Join Date
    Nov 2008
    Posts
    119

    Default Adding icons

    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

  2. #2
    Craig's Avatar
    Craig is offline Lead Designer
    Join Date
    Nov 2008
    Posts
    1,201

    Default

    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:
    <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>
    Bonus Offers:
    <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

  3. #3
    Brokerstar is offline Baller
    Join Date
    Dec 2008
    Posts
    281

    Default No, not working for me

    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?

  4. #4
    Craig's Avatar
    Craig is offline Lead Designer
    Join Date
    Nov 2008
    Posts
    1,201

    Default

    If you post or pm your url ill take a look
    Poker Affiliate Solutions Design Department

  5. #5
    undercash is offline Junior Member
    Join Date
    Nov 2008
    Posts
    10

    Default

    thank you, it works great and the result looks much better

  6. #6
    peteriddon75 is offline Baller
    Join Date
    Apr 2009
    Location
    UK
    Posts
    147

    Default

    Quote Originally Posted by Brokerstar View Post
    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?
    Hi I've just done what it says to get icons appear and mine is doing the same as this guys above. The icons come up but the tet is underneath. can you have a look at this for me please?

    Pete

  7. #7
    Craig's Avatar
    Craig is offline Lead Designer
    Join Date
    Nov 2008
    Posts
    1,201

    Default

    Quote Originally Posted by peteriddon75 View Post
    Hi I've just done what it says to get icons appear and mine is doing the same as this guys above. The icons come up but the tet is underneath. can you have a look at this for me please?

    Pete
    All fixed
    Poker Affiliate Solutions Design Department

  8. #8
    nugget64 is offline Junior Member
    Join Date
    Jun 2009
    Location
    Dominican Republic
    Posts
    10

    Default

    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?

  9. #9
    Craig's Avatar
    Craig is offline Lead Designer
    Join Date
    Nov 2008
    Posts
    1,201

    Default

    change

    <th colspan="2"> Rakeback Deals </th>
    to

    <th colspan="3"> Rakeback Deals </th>
    same for bonus offers
    Poker Affiliate Solutions Design Department

  10. #10
    nugget64 is offline Junior Member
    Join Date
    Jun 2009
    Location
    Dominican Republic
    Posts
    10

    Default

    That's it. Many thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts