XF 1.5 Show content only when not responsive/mobile.

Nudaii

Well-known member
howdy,

what would the variable be for extra.css to only show x css when the site is view via computor (not mobile/tablet)?
 
I use this:
Code:
@media only screen and (max-device-width:610px)
{.yourclass
{display:none !important}
}

(Set your max-device-width to taste)

Test in Firefox Tools >Web developer > Responsive Design View

I use it on my site at cafesaxophone.com, see header extra logo
 
Top Bottom