mypbaph Member Jul 11, 2015 #1 is it possible to hide user group ribbons/images/badge when viewing the forum from mobile browser? the All Star badge... thanks in advance!
is it possible to hide user group ribbons/images/badge when viewing the forum from mobile browser? the All Star badge... thanks in advance!
P Paul B XenForo moderator Staff member Jul 11, 2015 #2 You can use a media query. See the guide in my signature. Upvote 0 Downvote
D Dylan V Well-known member Jul 11, 2015 #3 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> Upvote 0 Downvote
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>