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

I need to show a notice only to desktop users. How i can do that?
Indeed. No option, but you can hide all notices from narrow screens with this CSS:
Code:
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive #Notices
    {
        display: none!important;
    }
}
 
Last edited:
Works for me:
Code:
/* disable notices for mobile */
@media (max-width:@maxResponsiveMediumWidth) {
.Responsive #Notices.PanelScroller { display: none !important; }
}
 
Back
Top Bottom