I mean mobile browsers have an option to "switch to desktop view", but a lot of people don't know that option and won't look for it if they don't know the site has a desktop view, and instead of display none you can choose to show a text or image on mobile, you can make a completely different site under the @media (max-width: 768px) { }
you can also have a message display for mobile users like this @media (max-width: 768px){body > * {display:none} body::after{content:"Website not available on mobile"}}
add to style: @media (max-width: 768px) { body { display: none; } }
@pirahxcx THE REAL MVP muahahahaha adding this to my css *evil plotting hand rubbing*
I mean mobile browsers have an option to "switch to desktop view", but a lot of people don't know that option and won't look for it if they don't know the site has a desktop view, and instead of display none you can choose to show a text or image on mobile, you can make a completely different site under the @media (max-width: 768px) { }
you can also have a message display for mobile users like this @media (max-width: 768px){body > * {display:none} body::after{content:"Website not available on mobile"}}
true comradery in these replies. thank you!!
im gonna give these a try later tonight