I'm so sorry... I had a really hard time following your train of thought from one post to the next. So i just tried everything I saw

Or rather, am trying them, as I type this. I'm doing one at a time.
1) First post. Used this code:
viewtopic_body.htm
- Code: Select all
<!-- BEGIN custom_fields -->
<!-- IF not postrow.S_PROFILE_SGCNAMEONE or not postrow.S_PROFILE_SGCNAMETWO or not postrow.S_PROFILE_OBNAMEONE or not postrow.S_PROFILE_OBNAMETWO or not postrow.S_PROFILE_SGANAMEONE or not postrow.S_PROFILE_SGANAMETWO or not postrow.S_PROFILE_SENAMEONE or not postrow.S_PROFILE_SENAMETWO or not postrow.S_PROFILE_CNAMEONE or not postrow.S_PROFILE_CNAMETWO or not postrow.S_PROFILE_WNAMEONE or not postrow.S_PROFILE_WNAMETWO or not postrow.S_PROFILE_AOLNAMEONE or not postrow.S_PROFILE_AOLNAMETWO or not postrow.S_PROFILE_FANTASYNAMEONE or not postrow.S_PROFILE_FANTASYNAMETWO -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- ENDIF -->
<!-- END custom_fields -->
It did absolutely nothing - didn't hide ANY profile field. And I remembered to refresh the template this time.
2) Tried this code (halfway through your second post):
viewtopic_body.htm
- Code: Select all
<!-- IF postrow.S_PROFILE_FIELD1 -->
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
<dd><strong>{postrow.PROFILE_FIELD1_NAME}:</strong> {postrow.PROFILE_FIELD1_VALUE}</dd>
<!-- ENDIF -->
<!-- BEGIN custom_fields -->
<!-- IF not postrow.S_PROFILE_SGCNAMEONE -->
<dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}: </strong>{postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
<!-- ENDIF -->
<!-- END custom_fields -->
<!-- IF not S_IS_BOT -->
<!-- IF postrow.U_PM or postrow.U_EMAIL or postrow.U_WWW or postrow.U_MSN or postrow.U_ICQ or postrow.U_YIM or postrow.U_AIM or postrow.U_JABBER -->
<dd>
<ul class="profile-icons">
((yes, I pulled out more code than necessary just to show where the placement in the file is))
That worked - except it also took out two extra custom fields I had made ((Gender and Real Name))
3) Tried that "simple fix". Here's the code:
viewtopic_body.htm
- Code: Select all
<!-- IF postrow.U_AIM --><li class="aim-icon"><a href="{postrow.U_AIM}" onclick="popup(this.href, 550, 320); return false;" title="{L_AIM}"><span>{L_AIM}</span></a></li><!-- ENDIF -->
<!-- IF postrow.U_JABBER --><li class="jabber-icon"><a href="{postrow.U_JABBER}" onclick="popup(this.href, 550, 320); return false;" title="{L_JABBER}"><span>{L_JABBER}</span></a></li><!-- ENDIF -->
</ul>
</dd><br><br>
<!-- ENDIF -->
<!-- ENDIF -->
<ul class="profile-icons">
<!-- IF postrow.S_PROFILE_SGCNAMEONE and postrow.S_PROFILE_SGCLINKONE -->
<li>
<dd><br><strong>Stargate Command</strong><br />
<a href="{postrow.PROFILE_SGCLINKONE_VALUE}" title="{postrow.PROFILE_SGCLINKONE_VALUE}">{postrow.PROFILE_SGCNAMEONE_VALUE}</a></dd>
<!-- IF postrow.S_PROFILE_SGCNAMETWO and postrow.S_PROFILE_SGCLINKTWO -->
<dd><a href="{postrow.PROFILE_SGCLINKTWO_VALUE}" title="{postrow.PROFILE_SGCLINKTWO_VALUE}">{postrow.PROFILE_SGCNAMETWO_VALUE}</a></dd>
<!-- ENDIF -->
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_SGANAMEONE and postrow.S_PROFILE_SGALINKONE -->
<li>
<dd><br><strong>Stargate: Atlantis</strong><br />
<a href="{postrow.PROFILE_SGALINKONE_VALUE}" title="{postrow.PROFILE_SGALINKONE_VALUE}">{postrow.PROFILE_SGANAMEONE_VALUE}</a></dd>
<!-- IF postrow.S_PROFILE_SGANAMETWO and postrow.S_PROFILE_SGALINKTWO -->
<dd><a href="{postrow.PROFILE_SGALINKTWO_VALUE}" title="{postrow.PROFILE_SGALINKTWO_VALUE}">{postrow.PROFILE_SGANAMETWO_VALUE}</a></dd>
<!-- ENDIF -->
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_OBNAMEONE and postrow.S_PROFILE_OBLINKONE -->
<li>
<dd><br><strong>Omega Base</strong><br />
<a href="{postrow.PROFILE_OBLINKONE_VALUE}" title="{postrow.PROFILE_OBLINKONE_VALUE}">{postrow.PROFILE_OBNAMEONE_VALUE}</a></dd>
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_SENAMEONE and postrow.S_PROFILE_SELINKONE -->
<li>
<dd><br><strong>Solar Exodus</strong><br />
<a href="{postrow.PROFILE_SELINKONE_VALUE}" title="{postrow.PROFILE_SELINKONE_VALUE}">{postrow.PROFILE_SENAMEONE_VALUE}</a></dd>
<!-- IF postrow.S_PROFILE_SENAMETWO and postrow.S_PROFILE_SELINKTWO -->
<dd><a href="{postrow.PROFILE_SELINKTWO_VALUE}" title="{postrow.PROFILE_SELINKTWO_VALUE}">{postrow.PROFILE_SENAMETWO_VALUE}</a></dd>
<!-- ENDIF -->
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_CNAMEONE and postrow.S_PROFILE_CLINKONE -->
<li>
<dd><br><strong>Christian Crusade</strong><br />
<a href="{postrow.PROFILE_CLINKONE_VALUE}" title="{postrow.PROFILE_CLINKONE_VALUE}">{postrow.PROFILE_CNAMEONE_VALUE}</a></dd>
<!-- IF postrow.S_PROFILE_CNAMETWO and postrow.S_PROFILE_CLINKTWO -->
<dd><a href="{postrow.PROFILE_CLINKTWO_VALUE}" title="{postrow.PROFILE_CLINKTWO_VALUE}">{postrow.PROFILE_CNAMETWO_VALUE}</a></dd>
<!-- ENDIF -->
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_WNAMEONE and postrow.S_PROFILE_WLINKONE -->
<li>
<dd><br><strong>World at War</strong><br />
<a href="{postrow.PROFILE_WLINKONE_VALUE}" title="{postrow.PROFILE_WLINKONE_VALUE}">{postrow.PROFILE_WNAMEONE_VALUE}</a></dd>
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_AOLNAMEONE and postrow.S_PROFILE_AOLLINKONE -->
<li>
<dd><br><strong>Annals of Lystra</strong><br />
<a href="{postrow.PROFILE_AOLLINKONE_VALUE}" title="{postrow.PROFILE_AOLLINKONE_VALUE}">{postrow.PROFILE_AOLNAMEONE_VALUE}</a></dd>
<!-- IF postrow.S_PROFILE_AOLNAMETWO and postrow.S_PROFILE_AOLLINKTWO -->
<dd><a href="{postrow.PROFILE_AOLLINKTWO_VALUE}" title="{postrow.PROFILE_AOLLINKTWO_VALUE}">{postrow.PROFILE_AOLNAMETWO_VALUE}</a></dd>
<!-- ENDIF -->
</li><br>
<!-- ENDIF -->
<!-- IF postrow.S_PROFILE_FANTASYNAMEONE and postrow.S_PROFILE_FANTASYLINKONE -->
<li>
<dd><br><strong>Fantasy</strong><br />
<a href="{postrow.PROFILE_FANTASYLINKONE_VALUE}" title="{postrow.PROFILE_FANTASYLINKONE_VALUE}">{postrow.PROFILE_FANTASYNAMEONE_VALUE}</a></dd>
<!-- IF postrow.S_PROFILE_FANTASYNAMETWO and postrow.S_PROFILE_FANTASYLINKTWO -->
<dd><a href="{postrow.PROFILE_FANTASYLINKTWO_VALUE}" title="{postrow.PROFILE_FANTASYLINKTWO_VALUE}">{postrow.PROFILE_FANTASYNAMETWO_VALUE}</a></dd>
<!-- ENDIF -->
</li><br>
<!-- ENDIF -->
</ul>
</dl>
<!-- ENDIF -->
<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
<span class="corners-bottom"><span></span></span></div>
</div>
<hr class="divider" />
Also:
- Code: Select all
<!-- IF not postrow.S_IGNORE_POST -->
<dl class="postprofile" id="profile{postrow.POST_ID}">
<dt>
<!-- IF postrow.POSTER_AVATAR -->
<!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}">{postrow.POSTER_AVATAR}</a><!-- ELSE -->{postrow.POSTER_AVATAR}<!-- ENDIF --><br />
<!-- ENDIF -->
<!-- IF not postrow.U_POST_AUTHOR --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- ELSE -->{postrow.POST_AUTHOR_FULL}<br><!-- ENDIF -->
<!-- IF postrow.S_PROFILE_REALNAME -->
<i>{postrow.PROFILE_REALNAME_VALUE} </i><br><!-- ENDIF -->
<!-- IF postrow.S_PROFILE_GENDER -->
<i>{postrow.PROFILE_GENDER_VALUE} </i><br />
<!-- ENDIF -->
</dt>
((Again, extra shown here to show placement in both sets of codes))
I really like the idea of having the list in the profile list on the right, so I figured out how to add it there and removed it from the sig. The average number of characters for any person is three to five, so having a long list every now and then really isn't that bad for me. I also tweaked the original code you gave me. I just noticed that the <strong> tags are not taking in this code.... not sure why not.
'm still messing with the Real Name and the Gender placement as I forgot about ranks.
I just can't seem to make the lists break though.

I've added <br> in several different places, as you can see, but no matter what, this is what I get. Any ideas? Could it have to do with whatever is keeping the <strong> tags from working as well?