#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Nov 10, 2018 18:00:33 GMT -8
Ahhh... It's the awards pop-up that is not displaying correctly..
In the Awards Settings tab, second from bottom there's a 'Give/Take Awards' setting with the pop-up colour and width options. Make sure that the width setting is either blank, or has a number higher than around 100. That SHOULD set the box size.
|
|
inherit
219308
0
Feb 26, 2023 13:40:42 GMT -8
{ breezes }
12
March 2015
snowykcnomre
|
Post by { breezes } on Dec 24, 2018 15:29:08 GMT -8
Is there any way to remove the title entirely?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Dec 26, 2018 10:41:32 GMT -8
Is there any way to remove the title entirely? Assuming you are using the latest version (3.0.4), add this to the plugins' Award Styling#profile_awards0 { color: transparent; font-size: 0px; }
#profile_awards0 br:nth-of-type(1), br:nth-of-type(2) { display: none; }
.miniProfileAwards { color: transparent; font-size: 0px; } That will effectively remove the title from both the mini-profile and the profile page proper.
|
|
SafeInSanity
Junior Member
Falling in love with Proboards again!
Posts: 424
inherit
23917
0
Feb 27, 2020 11:29:13 GMT -8
SafeInSanity
Falling in love with Proboards again!
424
May 2004
wiki
|
Post by SafeInSanity on Feb 22, 2019 10:43:38 GMT -8
Don't feel like reading all of these posts and pages but just wondering if a monetary system was ever added to this? Would be awesome if members had to earn points from posting to buy other member's gifts!
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Feb 22, 2019 11:54:17 GMT -8
Don't feel like reading all of these posts and pages but just wondering if a monetary system was ever added to this? Would be awesome if members had to earn points from posting to buy other member's gifts! I'm afraid not, and with the amount of recoding needed to essentially turn it into a shop, you may as well start from scratch and create a brand new plugin.
|
|
inherit
257118
0
Mar 8, 2019 8:21:06 GMT -8
TK18815
18
December 2018
tk18815
|
Post by TK18815 on Mar 6, 2019 12:26:19 GMT -8
This may sound incredibly trivial, and my knowledge of coding is very minimal. When the Awards title appears in the mini-profile it's very close to the bottom of another plugin I have running. Any idea what kind of code I would need to add to put about 15px of padding to the top of the title?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 6, 2019 17:47:02 GMT -8
This may sound incredibly trivial, and my knowledge of coding is very minimal. When the Awards title appears in the mini-profile it's very close to the bottom of another plugin I have running. Any idea what kind of code I would need to add to put about 15px of padding to the top of the title? Nothing trivial about that... Try adding this to the plugins styling.. .awarded { padding-top: 15px; }
|
|
inherit
257118
0
Mar 8, 2019 8:21:06 GMT -8
TK18815
18
December 2018
tk18815
|
Post by TK18815 on Mar 7, 2019 4:35:47 GMT -8
This may sound incredibly trivial, and my knowledge of coding is very minimal. When the Awards title appears in the mini-profile it's very close to the bottom of another plugin I have running. Any idea what kind of code I would need to add to put about 15px of padding to the top of the title? Nothing trivial about that... Try adding this to the plugins styling.. .awarded { padding-top: 15px; } Amazing! Exactly what I was looking for. Thank you!! Plugin works fantastic BTW.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 8, 2019 11:22:22 GMT -8
Nothing trivial about that... Try adding this to the plugins styling.. .awarded { padding-top: 15px; } Amazing! Exactly what I was looking for. Thank you!! Plugin works fantastic BTW. You are most welcome.
|
|
inherit
188628
0
Nov 11, 2022 11:51:03 GMT -8
Molly Jepson
300
January 2013
mjdelancy
|
Post by Molly Jepson on Mar 13, 2019 5:16:33 GMT -8
Forgive me if this is already answered somewhere, how do you style the pop-out button in the mini profile? On an earlier version of the plugin we were able to do it, but I wonder if something might've changed with a newer release that makes our method no longer work. It's now only showing up as plain text and I can't figure out how to style it again.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 14, 2019 15:19:50 GMT -8
Forgive me if this is already answered somewhere, how do you style the pop-out button in the mini profile? On an earlier version of the plugin we were able to do it, but I wonder if something might've changed with a newer release that makes our method no longer work. It's now only showing up as plain text and I can't figure out how to style it again. Some time ago I changes the way the awards are added to the mini-profiles, so it's quite likely you had a version before that change was made. The pop-up button of the awards in the mini-profile can be targetted with ' .miniprofileAwardsTitle', so you can make the awards pop-up into a button into a 'true' button by adding this the the plugin's styling.. .miniprofileAwardsTitle { border: 1px solid #a7a7a7; border-radius: 4px; background-color: #dadada; padding: 3px; font-weight: bold; font-family: "Verdana", "Times", serif; }
|
|
inherit
188628
0
Nov 11, 2022 11:51:03 GMT -8
Molly Jepson
300
January 2013
mjdelancy
|
Post by Molly Jepson on Mar 15, 2019 4:04:16 GMT -8
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 15, 2019 15:10:28 GMT -8
No worries..
|
|
multi
New Member
Posts: 8
inherit
256807
0
Sept 11, 2019 4:04:30 GMT -8
multi
8
November 2018
multi
|
Post by multi on Apr 15, 2019 9:46:59 GMT -8
Hi Todge when i added a new trophy to the list, this appeared in the profile of someone who has another trophy i added this gold one, and this user have a purple trophy, and always when i add a new trophy this things happens prntscr.com/ncbx62
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Apr 15, 2019 14:40:15 GMT -8
Hi Todge when i added a new trophy to the list, this appeared in the profile of someone who has another trophy i added this gold one, and this user have a purple trophy, and always when i add a new trophy this things happens prntscr.com/ncbx62Make sure that you always add trophies to the end of the list, if you try to insert a trophy, or if you delete one the list will be reconfigured, and your members may end up with trophies that were never awarded to them. If this is not what happened in your case, can you please leave a link to your forum so I can take a look. Thank you.
|
|