xf_phantom
Well-known member
I'm sure that i've requested this already, but i can't find it (sorry if it's really a duplicate of MY suggestion )
Could we get some "responsive css classes as helpers" like http://getbootstrap.com/css/#responsive-utilities.
e.g. http://xenforo.com/community/thread...plate-that-disappear-during-responsive.56414/
I don't want to have a fat list like
I would prefer to add just add some css classanmes to the element i want to show/hide and that's it
Much less work, much less needed code
Could we get some "responsive css classes as helpers" like http://getbootstrap.com/css/#responsive-utilities.
e.g. http://xenforo.com/community/thread...plate-that-disappear-during-responsive.56414/
I don't want to have a fat list like
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveWideWidth)
{
#firstBox { display: none; }
#secondBox { display: none; }
.headerFoo ...........
}
</xen:if>
I would prefer to add just add some css classanmes to the element i want to show/hide and that's it
Much less work, much less needed code
Last edited:
Upvote
0