PDA

View Full Version : Group membership formatting in user profile


MarylandMommy
Mon 17th Dec '07, 9:07pm
Is there a way to force a linewrap after each group membership in a users profile... the spaces in between make it very hard to read for our forum.

Jose Amaral Rego
Mon 24th Dec '07, 11:07pm
Would this be what you want.
20 to 21 and it would depend on your language you are using.

Admin CP > vBulletin Options > vBulletin Options > Thread Display Options (showthread) >
Number of Characters Before Wrapping Text [??]
If you want posts to automatically insert spaces into long words to make them wrap after a certain number of characters, set the number of characters in the box above.

If you do not want this to occur, enter 0.

MarylandMommy
Sun 30th Dec '07, 9:04pm
Would this be what you want.


I don't think this is what I want.

We have a number of group memberships and currently they show up looking like this:

Weight Loss Support Group
Guidelines Committee Lofty
Thoughts Toddler Mommy
Welcoming Committee Preschool
Mommy

and I would like it to look more like this:

Weight Loss Support Group
Guidelines Committee
Lofty Thoughts
Toddler Mommy
Welcoming Committee
Preschool Mommy


This is in the user profile under group memberships.

Thanks!

Jose Amaral Rego
Sun 30th Dec '07, 10:27pm
# find template: memberinfo_socialgroupbit
# add breakline html code at the end of template.

<li class="smallfont"><if condition="$showgrouplink"><a href="group.php?$session[sessionurl]groupid=$socialgroup[groupid]"></if>$socialgroup[name_html]<if condition="$showgrouplink"></a></if> </li><br />

Jose Amaral Rego
Tue 1st Jan '08, 6:50pm
# find template: memberinfo_publicgroupbit
# add breakline html code at the end of template.
<li>$usergroup[opentag]$usergroup[title]$usergroup[closetag] </li><br />

MarylandMommy
Wed 2nd Jan '08, 2:19pm
Thank You!!