How do I show different things for different profiles?
Design and Skin Customization
If this is going on the profile page, you could check the _profile_id and show the banner that way... ie.
{if $_profile_id == '1'}
Show banner code to the master admin only...
{elseif $_profile_id == '2'}
Show banner code to profile ID 2 only....
{else}
Show banner code to everyone else...
{/if}
Hope this helps,
Douglas