Nudaii Well-known member Aug 4, 2015 #1 howdy, what would the variable be for extra.css to only show x css when the site is view via computor (not mobile/tablet)?
howdy, what would the variable be for extra.css to only show x css when the site is view via computor (not mobile/tablet)?
Mr Lucky Well-known member Aug 4, 2015 #2 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 Upvote 0 Downvote
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
P Paul B XenForo moderator Staff member Aug 4, 2015 #3 This guide explains it in detail: Responsive Design Upvote 0 Downvote