XF 1.4 Problem with style class in template

CharlesXF

New member
Hi !

I have a problem with the class : style(userGroupID)
When I enter this in a template :
Code:
<span class="username style6">Text</span>

The text doesn't appear in the CSS Style of the user group who has the ID 6 :(

Can you have some help please ?
 
That's not going to match the selector. The selector is ".username .style#", so the username class needs to be on a parent element.
 
Top Bottom