inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Jun 19, 2013 13:37:47 GMT -8
I was wondering if anyone had any good custom templates for the mini-profile? Or if anyone possibly knows how to customize the member group name in the mini-profile with CSS atleast, along with moving it under the avatar.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Jun 19, 2013 14:06:37 GMT -8
I was wondering if anyone had any good custom templates for the mini-profile? Or if anyone possibly knows how to customize the member group name in the mini-profile with CSS atleast, along with moving it under the avatar. I assume you'd also want to move the member rank, too? Otherwise that may be weird, some people having it above the avatar, and others having it below.. Admin > Themes > Layout Templates > Mini Profile On lines 4 - 11 you should see: {if $[user.group]} $[user.group.name]<br />$[user.group.stars]<br /> {elseif $[user.rank]} $[user.rank.name]<br /> {if $[user.rank.stars]} $[user.rank.stars]<br /> {/if} {/if} Copy it to your clipboard (highlight & ctrl+c). Then remove/erase/delete it. Also remove the blank line you now have on line 4. Now on line 9 you should see: {/if} Make a new line break after that and paste the above code in, that you copied to your clipboard. So now lines 7 - 17 should be... {if $[user.avatar]} <div class="avatar">$[user.avatar]</div><br /> {/if} {if $[user.group]} $[user.group.name]<br />$[user.group.stars]<br /> {elseif $[user.rank]} $[user.rank.name]<br /> {if $[user.rank.stars]} $[user.rank.stars]<br /> {/if} {/if}
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Jun 19, 2013 14:58:01 GMT -8
Great! Thanks! How can I make the font bigger and customize the usergroup and rank some? I know it has to be in the stylesheet but I'm not sure how to label it. I have the userlinks and customtitle ones down.
Also I'm trying to make the Relationship section the same font family and possibly font size as the rest, but since it's a plugin I'm not sure how. I tried .relationship { font-family: Pathway Gothic One; } in the stylesheet but nothing.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Jun 20, 2013 19:51:31 GMT -8
Bump.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Jun 22, 2013 12:19:04 GMT -8
Bump.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Jun 23, 2013 8:22:44 GMT -8
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jun 24, 2013 10:40:53 GMT -8
If you just surround the text you want to customize with a span that has a class, you should be able to address it with CSS. For example: Once that's done, you can address it using these selectors.
|
|
inherit
118283
0
Oct 24, 2020 6:55:22 GMT -8
Ishy
470
February 2008
april7291
|
Post by Ishy on Jun 24, 2013 12:59:28 GMT -8
Thank you so much! And do you possibly know how to edit the CSS for the Relationship Status plugin? If not then I'm all set here (:
|
|