The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[PunBB] Affiliate Promotion Table

4 posters

Go down

Solved [PunBB] Affiliate Promotion Table

Post by Guest December 15th 2013, 2:59 am

Hello,
I wanted to ask how would I go about adding an Affiliate Promotion Table like the one in the image below.
[PunBB] Affiliate Promotion Table Screen19
I would be interested in adding something like this to my website but I need help knowing how to do this!

Regards,
Jadster
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 16th 2013, 3:06 am

I am still needing some help with this Smile

Anybody able to help?
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Kite Trojan December 16th 2013, 3:12 am

Where did you find this?
Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 16th 2013, 3:20 am

http://www.networkfm.net

That is the website that I found this being used at. It is a forumotion site run by Derri, the software is PunBB.
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Kite Trojan December 16th 2013, 3:21 am

Why don't you just PM him and he might help you?
Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 16th 2013, 3:24 am

I would but I feel that opening up this thread would be more beneficial for other people who may be wanting to know how to do this too.
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Kite Trojan December 16th 2013, 3:26 am

Oh. I'll try to figure this out. My next post should be around this week.
Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 16th 2013, 3:31 am

Alright, I am hoping Derri or Seth will see this, they will probably have the answer to this! Thank you though for your reply.
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Kite Trojan December 16th 2013, 3:36 am

Derri can't help you. Sad Someone else did it for him and the person that did it wasn't to stay anonymous.

The PM:
Derri wrote:It wasn't me who codded those and I therefore can't provide the coding or tell you who did it because they wish to remain anonymous. Sorry. 

Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Derri December 16th 2013, 3:40 am

Xnomejx they are called private messages for a reason, they are private.

Anyway since Xnomejx has kindly provided my answer for me. I can't provide you with the coding as it wasn't done personally by me and the coder who did it wished to remain anonymous so I can't actually tell you who did it as I must respect his wishes.
Derri
Derri
Helper
Helper

Male Posts : 8755
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 16th 2013, 3:44 am

That is fine Derri! I will see if Seth possibly knows the answer to this Smile

Thank you though for taking the time to reply!
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by SLGray December 16th 2013, 3:50 am

We can not give you the exact code, but maybe someone could give you one similar to it.


[PunBB] Affiliate Promotion Table Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51503
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 16th 2013, 3:51 am

SLGray,
I am not looking for exact code, just something similar Smile
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Ange Tuteur December 16th 2013, 4:45 am

Hello Jadster,

All it takes is a little bit of tables, divs, and my favorite; css.
^ you can read those links if you need any info

Please note the design is in the default punbb style, the style is up to you Cool

HTML :
Should go in the Index body template around the WIO / statistics table or something, I really dunno where you want it.

PA > Display > Templates > General > index_body
Code:
<div class="misc_category">
 <div class="misc_header">Header text</div>
  <table class="misc_table">
    <tr class="misc_row">
      <td class="misc_cell">text here text here text here text here text here text here text here text here text here text here</td><td class="misc_cell">text here text here text here text here text here text here text here text here text here text here</td><td class="misc_cell">text here text here text here text here text here text here text here text here text here text here</td>
    </tr>
    <tr class="misc_row">
      <td class="misc_cell">text here text here text here text here text here text here text here text here text here text here</td><td class="misc_cell">text here text here text here text here text here text here text here text here text here text here</td><td class="misc_cell">text here text here text here text here text here text here text here text here text here text here</td>
    </tr>
  </table>
 <div class="misc_footer">Footer text</div>
</div>

CSS :
PA > Display > Colors > CSS stylesheet
Code:
.misc_header {
background:#1F537B;
color:#DEDFDF;
padding:8px 15px;
}
.misc_table {
border-spacing:0;
background:#333;
width:100%;
}
.misc_row {
background:#FBFBFB;
}
.misc_cell {
border:1px solid #ddd;
padding:3px;
}
.misc_footer {
background:#1F537B;
text-align:center;
color:#DEDFDF;
padding:3px 0;
}

Result :
[PunBB] Affiliate Promotion Table Captu234
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 17th 2013, 1:51 am

Hello Seth!
I got it to work for me but now I am confused on how to add the 1 last thing I wanna add to this, I was hoping you could possibly help me with it.

Image:
Spoiler:

I want to be able to do what I have in the red box and do the same but also where it is circled. I wanted to know if this would be possible?
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Ange Tuteur December 17th 2013, 2:00 am

Did you delete the misc header ?

You would modify its CSS to what you wish. It should either be placed in the misc category or above it.

Code:
<div class="misc_header">Header text</div>
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 17th 2013, 2:04 am

I didn't use the code that you gave me though, I changed it up a bit to meet what I wanted.
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Ange Tuteur December 17th 2013, 2:11 am

The code above is an example of how the headers are made. Use that div element to create your header, adjust the width, height, and padding with CSS.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Guest December 17th 2013, 2:32 am

Thank you very much Seth! I am now just having to figure out how to change my statistics to tabs but I already have a thread about that. This one is solved now!

Thanks,
Jadster
avatar
Guest
Guest


Back to top Go down

Solved Re: [PunBB] Affiliate Promotion Table

Post by Ange Tuteur December 17th 2013, 2:34 am

You're welcome

Topic solved and archived
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum