Current Code:
PHP Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="40%" align="center">
<tr>
<td class="tcat" width="100%">
<div style="text-align: center;">
$prepared[username]'s Profile Navigation
</div>
</td>
</tr>
<tr>
<td class="alt1" width="100%">
<div class="smallfont">
<a href="/gallery/browseimages.php?do=member&imageuser=$prepared[userid]">$prepared[username]'s Gallery</a> | <a href="/album.php?u=$prepared[userid]">$prepared[username]'s Album</a> | <a href="/blog.php?u=$prepared[userid]">$prepared[username]'s Blog</a>
</div>
</td>
</tr>
</table>
New Code I tried:
PHP Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="40%" align="center">
<tr>
<td class="tcat" width="100%">
<div style="text-align: center;">
<if condition="$userinfo['field16']==Yes">$userinfo[field15]<else />$userinfo[username]</if>'s Profile Navigation
</div>
</td>
</tr>
<tr>
<td class="alt1" width="100%">
<div class="smallfont">
<a href="/gallery/browseimages.php?do=member&imageuser=$prepared[userid]">$prepared[username]'s Gallery</a> | <a href="/album.php?u=$prepared[userid]">$prepared[username]'s Album</a> | <a href="/blog.php?u=$prepared[userid]">$prepared[username]'s Blog</a>
</div>
</td>
</tr>
</table>