Specific Style per Usergroup

Lu Kas

Active member
I want my premium members to have a special style, thats only avaliable to them how do i do that?

They are all in a own usergroup.

thank you :)
 
Not displaying adverts to certain user groups is easy enough.

Code:
<xen:if is="!{xen:helper ismemberof, $visitor, 3} AND !{xen:helper ismemberof, $visitor, 4} AND !{xen:helper ismemberof, $visitor, 5}">
Advert code here
</xen:if>

That will show adverts to all groups except 3, 4 and 5.
 
Top Bottom