user2415116
user2415116

Reputation: 777

How to make fixed-width pages zoomed-out on mobile?

I have a bunch of landing pages that are fixed-width. All of them appear very zoomed-in on mobile browsers.

What I have done:

I'm at a loss. Ideally, I'd just make all these landing pages responsive, but I have at least 20 of them and just want them to look decent for now.

Upvotes: 1

Views: 562

Answers (1)

Miro
Miro

Reputation: 8650

EDIT:

Add this to your CSS:

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
    html {zoom:0.8;}
}

Manipilate the zoom untill you get it right.

Upvotes: 1

Related Questions