Hi Gonçalo,
You can encapsulate the container in an if widget.
Or in Extend Properties... Instead of
If(IdentifierToInteger(GetUsers.List.Current.User.Attribute1) = 1,
"ShowContainer = True",
"ShowContainer = False")
put
If(IdentifierToInteger(GetUsers.List.Current.User.Attribute1) = 1,
"",
"display:none")
But CSS inline is not recommended... because
CSS and HTML should be kept separate. Inline styles are inefficient, harder to maintain, and make your HTML larger.
I hope the above is useful to you!