XF 2.2 Show forum description text on mobile?

Solution
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;
    }
}
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;
    }
}
 
Solution
Back
Top Bottom