XF 1.3 Center all banners in messageUserBlock

Chimpie

Well-known member
We are using banners for some of the usergroups and the default staff banner. We would like to center them, as we've already center the user names and user titles.

I put this in the extra.css (tried before posting here) but it's not working:
Code:
.messageUserBlock .userBanner
{
text-align: center;
}

Suggestions?
 
I'm probably making this harder than I need to, still learning, but I put in the extra.css this...

Code:
<xen:if is="@enableResponsive">
.Responsive .messageUserBlock .userBanner
{
text-align: center;
}
</xen:if>

No luck. Am I going about it the wrong way?
 
Top Bottom