XF 1.3 There are a way to disable notices for mobile users?

Works for me:
Code:
/* disable notices for mobile */
@media (max-width:@maxResponsiveMediumWidth) {
.Responsive #Notices.PanelScroller { display: none !important; }
}
 
Top Bottom