Device Width

Glenn

Member
I noticed that my reworked site didn't look right on my cell. I added a meta to correct this but it made it worse. What else can I do?

Here's the meta tag I added:

<meta name="viewport" content="width=device-width">
 

Glenn

Member
I've changed it to:

<meta name = "viewport" content = "width=device-width, initial-scale=1">

Still didn't do anything.
 

qba82

New Member
You have right css code? For example:
@media (min-width:769px) and (max-width:991px) {
html {
font-size: 90%;
}
will affect devices with 769-991px width
 
Top