Tutorials Show forum description text on mobile?

Xenforo

Member
Staff member
Administrative
Top Monthly Contributor
Points 6
Solutions 0
Joined
Dec 2, 2025
Messages
32
Reaction score
0
Points
6
Xenforo
Add this to the extra.less template to show them online on all screen widths:

Less:
.node-description
{
    display: block !important;
}

If you want them to show inline on mobile only, use this:

Less:
@media (max-width: @xf-responsiveMedium)
{
    .node-description
    {
        display: block !important;
    }
}
 
Back
Top