XF 1.3 How to remove forum descriptions from the homepage ONLY on mobile devices?

markku

Well-known member
I would like to remove the forum descriptions from the homepage from showing on mobile devices, such the iPad etc.

Is there possibly an easy way to achieve this?

Thanks in advance!
 
This should work from the widest responsive width down to the narrowest. Add it to the bottom of EXTRA.css

Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveWideWidth)
{
        .node .nodeDescription
        {
                display: none;
        }
}
</xen:if>
 
Top Bottom