XF 1.4 Hide user group images

mypbaph

Member
is it possible to hide user group ribbons/images/badge when viewing the forum from mobile browser?

8o4yO.png


the All Star badge... thanks in advance!
 
Hi,

Go to EXTRA.css and add this:
Code:
<xen:if is="@enableResponsive">

@media (max-width: @maxResponsiveNarrowWidth)
{
    .Responsive .messageUserBlock .userBanner
    {
         display: none !important;
    }
}

</xen:if>
 
Top Bottom