Ozzy47
Well-known member
In an addon I'm working on, I have this in a.less file:
Now the only way to get that style property to apply to the template when I change it from yes to no is to save the .less template.
I seem to remember coming across this before,and there was a way to rebuild the template/cache to apply the changes to the style property.
CSS:
<xf:if is="property('ozzmodz_fm_mobile') == 'no'" >
@media (max-width: @xf-responsiveMedium)
{
display: none;
}
</xf:if>
Now the only way to get that style property to apply to the template when I change it from yes to no is to save the .less template.
I seem to remember coming across this before,and there was a way to rebuild the template/cache to apply the changes to the style property.