[Context: In my frank opinion the Mobile, Tablet and the smaller Desktop screen size views absolutely suck a$$, in fact this goes for the whole ir"responsive screen sizing" thing—in general.]
- I would like to know how to force the (fully zoomed out) 1200px width full Desktop screen size view for all devices and screen sizes-(*including Mobile).
- Please note that I am entirely unconcerned with any possible rationale arguing for why this couldn't nor shouldn't be achievable.
- The full 1200px width zoomed out Desktop view is (imo) near perfection, whereas anything less—especially the ghastly standard Mobile view—are completely inadequate.
- No matter what device is used, when visiting the site I would like to see the exact same layout.
•Example: the Tags Landing Page view @1200px;
•Does anyone know the necessary CSS &/or HTML magicka to achieve this?
•Here are a few examples of codes found elsewhere online:
<meta name="viewport" content="width=device-width" />
@media only screen and (max-width: 900px) {
/* Style adjustments for non responsive websites */
body{width:940px;}
}
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
•Would any of these-(possibly if modified)-do the trick?