inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Oct 14, 2013 10:35:39 GMT -8
Hi, I'm wondering if you know how I can possibly get this plugin below the red and green tables in the info section in the mini-profiles? Maybe even put it in a colored div itself to match the template I have but if not atleast below it all. Currently it's showing right under the name. themesite1.proboards.com/thread/4
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 14, 2013 19:00:13 GMT -8
your template has
<div class="relationship"></div>
right under the name. its going to put it wherever that div is.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Oct 15, 2013 6:49:17 GMT -8
Wormopolis, that's not what I'm seeing. This is my mini-profile template. <div class="$[miniprofile_class]"> <center>$[user]<br /> {if $[user.custom_title]}$[user.custom_title]<br />{/if}</center> $[user.warning.bar] <br /> {if $[user.avatar]} <div class="avatar">$[user.avatar]</div><br /> {if $[user.personal_text.message]} $[user.personal_text] {/if} {/if} <br /> {if $[user.is_member]} <div class="info">
<center> <div style="font-size:1em;background-color:#578f61;color:#fff;width:40%;padding:8px;float:left;margin-right:5px;text-align:center;margin-bottom:5px;"> {foreach $[user.mini_custom_field]} {if $[user.mini_custom_field.name] == "Application"} <span class="$[user.mini_custom_field.content_class]"> <a href="$[user.mini_custom_field.value]">Bio</a> </span> {/if} {/foreach} </div> <div style="font-size:1em;background-color:#aa2b2b;color:#fff;width:40%;float:left;padding:8px;text-align:center;margin-bottom:5px;"> {foreach $[user.mini_custom_field]} {if $[user.mini_custom_field.name] == "Plotter"} <span class="$[user.mini_custom_field.content_class]"> <a href="$[user.mini_custom_field.value]">Plot</a> </span> {/if} {/foreach} </div>
<div style="font-size:1em;background-color:#aa2b2b;color:#fff;width:40%;float:left;text-align:center;margin-right:5px;padding:8px;margin-bottom:5px;"> $[user.group.name] </div> <div style="font-size:1em;background-color:#578f61;color:#fff;width:40%;float:left;text-align:center;padding:8px;margin-bottom:5px;"> $[user.posts] posts </div>
<div style="font-size:1em;background-color:#578f61;color:#fff;width:40%;padding:8px;float:left;margin-right:5px;text-align:center;margin-bottom:5px;"> $[user.location] </div> <div style="font-size:1em;background-color:#aa2b2b;color:#fff;width:40%;float:left;text-align:center;padding:8px;margin-bottom:5px;"> {foreach $[user.mini_custom_field]} {if $[user.mini_custom_field.name] == "Diet"} <span class="$[user.mini_custom_field.content_class]"> $[user.mini_custom_field.value] </span> {/if} {/foreach} </div> <div style="font-size:1em;background-color:#aa2b2b;color:#fff;width:40%;padding:8px;float:left;margin-right:5px;text-align:center;margin-bottom:5px;"> {if $[user.is_online]}<span class="italic">Online</span> {elseif $[user.is_offline]}<span class="italic">Offline</span> {/if} </div> <div style="font-size:1em;background-color:#578f61;color:#fff;width:40%;float:left;text-align:center;padding:8px;margin-bottom:5px;"> {foreach $[user.mini_custom_field]} {if $[user.mini_custom_field.name] == "Played By"} <span class="$[user.mini_custom_field.content_class]"> $[user.mini_custom_field.value] </span> {/if} {/foreach} </div> </center>
<div class="relationship"></div>
</div><br /> {/if} {if $[user.badges_miniprofile]} <div class="$[user.badges_miniprofile_container_class]"> {foreach $[user.badges_miniprofile]} $[user.badges_miniprofile.icon] {/foreach} </div> {/if} </div>
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 15, 2013 14:29:40 GMT -8
well now I am seeing the structure like the post above.
and the code is no longer running
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 16, 2013 1:33:58 GMT -8
move the div to the very bottom, right above the last closing </div> and make it
<div style="clear:both" class="relationship"></div>
but I think I see a different problem that I am putting in a fix for. your user name is inside a box by itself and I have it looking at the parent of the user name. normally that would be the mini-profile div itself.. but since you surrounded it, its appending to the same box. so I am pushing a version upgrade to counter that.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Oct 16, 2013 7:12:08 GMT -8
Last night before you responded I removed the plugin and this morning I put it back in and now it seems to be acting differently, in a good way. Before I even added in the div style you gave me above the plugin position was moved down, yay! But I just also entered in the div style you gave me and it's still there (under the personal text now). Maybe I didn't put it in the right spot?
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 16, 2013 8:23:35 GMT -8
leave it there. when the version I pushed to library gets approved it should fix itself again.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Oct 16, 2013 8:48:57 GMT -8
Okay thank you
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 16, 2013 18:31:39 GMT -8
submission accepted
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Oct 17, 2013 10:12:00 GMT -8
Yay! But it didn't work XD For me anyways.
EDIT: I am installing the latest plugin version now to see if that's the reason.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Oct 17, 2013 10:26:44 GMT -8
Okay. That was exactly the problem. Sorry for the double posting but thank you
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 25, 2024 7:36:42 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Oct 28, 2013 0:29:25 GMT -8
Hey Wormopolis, I am currently using <span class="relationship"></span> to target the appearance and location of the relationship in mini-profiles. However, I was curious if there's any way to target, specifically, the field and value separately. So Relationship: Single would let me format Relationship and Single (or whatever the value is) separately. Is that possible in the mini-profile or no? If not no biggie but it might look a bit nicer in my particular mini-profile =)
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 28, 2013 0:37:09 GMT -8
I... Don't know for sure. I think its all text in that. I need to look with a computer instead of a phone. But I can add in a span around the label part for targeting
I been building a theatre in Albuquerque this week so my online time has been reduced. 12 hour days wear me out. I fly back to LA in the morning though so hopefully I can get some more programming time.
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 25, 2024 7:36:42 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Oct 28, 2013 0:42:06 GMT -8
Hey man, no worries. You take all the time you need. Building a theatre in Albuquerque? That is awesome. My mini-profile can sit nice and pretty in the meantime haha you build that theatre
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Nov 1, 2013 0:35:46 GMT -8
ok version 1.2.3 submitted to library
the label is wrapped in <label></label> tags so it will be able to be targetted with
span.relationship label {color:#FF0000}
|
|