XF 1.5 Exclude from mobile style?

FriscoCharlie

Active member
Question: Is it possible to have something displayed in the header of the forum and have it excluded in the mobile style? Example, a wider logo, etc., for the forum but a smaller one for the mobile style.

I am guessing no but worth the asking.

Thanks.
 
PHP:
.your_element {
    blabla: blabla;
}
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth){
.your_element{
    blabla: whatever_you_want_to_change;}
}
</xen:if>
 
Top Bottom