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

markku

Well-known member
Licensed customer
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>
 
That will remove it from responsive styles for all devices.
There is no conditional statement to target mobile devices only.
 
Back
Top Bottom