XF 1.5 allow signature to show on all screen sizes

htweet

Member
Licensed customer
please i need to configure my xenforo software such that signature can show for smaller screen sizes. i have discovered that signature only shows on desktop and tablet. I want to be able to show signature on smaller mobile devices and all screen sizes generally.

And please, i want to do same for the share link that appears on all threads and comments (e.g #1, #2, #3, etc)
 
It appears to be intentional:

Admin CP -> Appearance -> Templates -> message.css

Code:
    .Responsive .message .signature
    {
        display: none;
    }

Remove that code or override it using EXTRA.css
Resurrecting this from the dead. Is there any way to make signatures visible for specific user groups only?
 
That's not the same as the original question.

Here you go.
 
@beerForo
This thread is for Xenforo 1.5.x and not for 2.x ;)

For me at Xenforo 1.5.24 in EXTRA.CSS this work:
CSS:
/* Signatur auch Mobile */
<xen:if is="@enableResponsive">
    @media (max-width: 480px)
        {
            .Responsive .message .signature { display: block !important; }
        }
</xen:if>

At a similar way you can set that only specific user groups can see this at mobile view i think. :)
 
Back
Top Bottom