farang
Well-known member
Is it possible to NOT have these descriptions show up in responsive mode?
Do You want to hide the Attachment Title in responsive mode?
You can use media queries in EXTRA.css to hide elements
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth) {
.class {
display: none;
}
}
</xen:if>
Replace .class with the actual classname that You wish to hide only in responsive mode.
http://xenforo.com/community/resources/responsive-design.2193/