Style A small tweak: We need to have the permalink also display on mobile viewports.

tribedude

Active member
Something that bugs me in Xenforo is that the permalink in posts disappears when the viewport size is less than 480 pixels. This eliminates the permalink from being seen on mobile devices.

In this day and age, having the ability to share post content easily is critical, and we would like the permalink visible when users browse our site with mobile devices so they can use it to share more easily. I am sure other xenforo publishers could benefit from this as well.

We are using a default Xenforo style with minor color palette changes and no add-ons.
We are using a minor ExtraCSS tweak to put the word "Share" in front of the permalink #, but this is also only visible on desktop.

share-mobile-tweak.PNG


We would like this to be visible on mobile devices as well.

If this is something you can do for us [paid - give me a quote], or if you have done it already on your forum and can share it with us I would appreciate it.

Thanks,

alexd
 
Last edited:
Edit the message.css template.

Delete this:
Code:
.Responsive .message .postNumber,
.Responsive .message .authorEnd
{
    display: none;
}
 
Top Bottom