markku Well-known member Mar 10, 2014 #1 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!
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!
Steve F Well-known member Mar 10, 2014 #2 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> Upvote 0 Downvote
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>
P Paul B XenForo moderator Staff member Mar 10, 2014 #3 That will remove it from responsive styles for all devices. There is no conditional statement to target mobile devices only. Upvote 0 Downvote
That will remove it from responsive styles for all devices. There is no conditional statement to target mobile devices only.