#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,131
January 2004
todge
|
Post by Todge on Apr 24, 2022 16:38:17 GMT -8
Hi, Todge . Is it possible to rename or remove "Select your Team Icon" as well as add a space between username and image in Mini-Profile? Thanks. Edit: Images I’ve tried add below the username, not to the right as it’s set in the plugin settings.
You can remove the 'Select you Team Icon' from the dropdown by adding this to your forums CSS Stylesheet..
#iconDiv u { display: none; } #iconDiv br:first-of-type { display: none; }
As for the images being placed in the wrong place.. Have you changed the layout of your mini-profile?
|
|
inherit
198412
0
May 26, 2022 8:09:32 GMT -8
Timebomb007
433
August 2013
timebomb007
|
Post by Timebomb007 on Apr 25, 2022 14:16:55 GMT -8
Hi, Todge . Is it possible to rename or remove "Select your Team Icon" as well as add a space between username and image in Mini-Profile? Thanks. Edit: Images I’ve tried add below the username, not to the right as it’s set in the plugin settings.
You can remove the 'Select you Team Icon' from the dropdown by adding this to your forums CSS Stylesheet..
#iconDiv u { display: none; } #iconDiv br:first-of-type { display: none; }
As for the images being placed in the wrong place.. Have you changed the layout of your mini-profile? Thanks. Yes. Forum URL: pondfriends.boards.netMini Profile template: <div class="$[miniprofile_class]">
$[user]<br />
{if $[user.is_guest]}Guest<br />{/if}
{if $[user.group.id] == "1"}
$[user.group.name]<br />
{elseif $[user.group.stars]}
$[user.group.name] <br />
$[user.group.stars]<br />
{else}$[user.rank.name]<br />
$[user.rank.stars]<br/>{/if}
<br />
<center>{if $[user.avatar]}
<div class="avatar">$[user.avatar]</div>
{/if}</center>
{if $[user.personal_text.message]}
$[user.personal_text]
{/if}
{if $[user.is_member]}<br />
<div class="info">
Posts: $[user.posts]{if $[user.gender]}<span class="float-right">$[user.gender.image]</span>{/if}
{foreach $[user.mini_custom_field]}
<br /><span class="$[user.mini_custom_field.content_class]">$[user.mini_custom_field.name]: $[user.mini_custom_field.value]</span>
{/foreach}
<br /> <a href="/user/$[user.id]/recent">Recent Posts</a>
<br /> <a href="/user/$[user.id]/recent_threads">Recent Threads</a>
{if $[user.is_online]}<br /><span class="italic">Member is Online</span>{/if}
</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}
<br /> <a href="/conversation/new/$[user.id]"><img src="http://i.imgur.com/83H21Tc.png"></a>
</div>[/spoiler]
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,131
January 2004
todge
|
Post by Todge on Apr 26, 2022 4:36:20 GMT -8
Thank you.
If I put your mini-profile template into my test forum, everything appears to work fine, BUT, I do have a newer version that I haven't added to the library, so can you please try version 1.1.1 and let me know if it works.
If it doesn't, I will need to see it in action on your forum, in that case, I'd need access to a guest friendly thread where the plugin has been used. I will not need to post anything, just to take a look.
|
|
inherit
198412
0
May 26, 2022 8:09:32 GMT -8
Timebomb007
433
August 2013
timebomb007
|
Post by Timebomb007 on Apr 26, 2022 15:41:40 GMT -8
Thank you.
If I put your mini-profile template into my test forum, everything appears to work fine, BUT, I do have a newer version that I haven't added to the library, so can you please try version 1.1.1 and let me know if it works.
If it doesn't, I will need to see it in action on your forum, in that case, I'd need access to a guest friendly thread where the plugin has been used. I will not need to post anything, just to take a look. Hi. Still happens with 1.1.1. United States flag is showing underneath instead of to the right of my name. Thread: pondfriends.boards.net/thread/9590/test
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,131
January 2004
todge
|
Post by Todge on Apr 26, 2022 16:19:36 GMT -8
Thank you.
If I put your mini-profile template into my test forum, everything appears to work fine, BUT, I do have a newer version that I haven't added to the library, so can you please try version 1.1.1 and let me know if it works.
If it doesn't, I will need to see it in action on your forum, in that case, I'd need access to a guest friendly thread where the plugin has been used. I will not need to post anything, just to take a look. Hi. Still happens with 1.1.1. United States flag is showing underneath instead of to the right of my name. Thread: pondfriends.boards.net/thread/9590/test
Ah-ha..
The issue is with the width of the icon, there's not enough room beside your name to add it, and as you have selected to add it to the right of your name, it is being pushed onto the next line.
There are a few work-arounds to fix that.. You could widen the mini-profile to add room, or reduce the size of the display names in the mini-profile for the same reason, but the easiest way is to reduce the size of the icon.
You can do this by adding this to your forum's CSS Styling..
.team_icon { width: 40px; }
Change the number to one that suits you.
|
|
inherit
198412
0
May 26, 2022 8:09:32 GMT -8
Timebomb007
433
August 2013
timebomb007
|
Post by Timebomb007 on Apr 26, 2022 17:00:25 GMT -8
Thanks, Todge. That makes sense.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,131
January 2004
todge
|
Post by Todge on Apr 27, 2022 0:38:33 GMT -8
<p>No worries..  </p>
|
|
inherit
198412
0
May 26, 2022 8:09:32 GMT -8
Timebomb007
433
August 2013
timebomb007
|
Post by Timebomb007 on Apr 29, 2022 16:58:12 GMT -8
Todge: Is it possible to add an extra space before my username and flag, not affecting everyone else? There’s extra blue at the beginning of my username from the Display Name Styles plugin. pondfriends.boards.net/thread/9604/test
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,131
January 2004
todge
|
Post by Todge on Apr 30, 2022 3:49:27 GMT -8
Todge : Is it possible to add an extra space before my username and flag, not affecting everyone else? There’s extra blue at the beginning of my username from the Display Name Styles plugin. pondfriends.boards.net/thread/9604/test
You can try adding this to your CSS Styling..
.mini-profile .user-1 { margin-left: 2px; }
And change the number to suite.
|
|