XF 2.1 Content for desktop only

woody

Well-known member
I've tried a dozen setups, and none work....is there an easy trigger to display content ONLY on desktop?

Thank you!
 
Just need a media query:

Code:
@media (max-width:@xf-responsiveWide) { .divName { display: none; } }

This will hide it at the wide width (Style properties -> Page setup)
 
And, I sit corrected....the light/dark priority of my Styles created a conflict....once I resolved that, the break point setup works as expected.

It's been a long week...lol
 
Back
Top Bottom