From a quick glance, I see this:
Code:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
.p7CCM01 {max-width: 960px !important; min-width: 0px !important;}
body { margin: 8px !important; min-width: 0px !important;}
}
Obviously, when the viewport is narrower than 960px, you don't want that width to apply, but you still have this operating:
Code:
media="all"
.p7ccm01-fixed-960 {
width: 960px;
}
I would remove that from your general CSS styles and only place it where you actually want it (that is, on viewports 960px wide or greater—so put it in an @media rule for that situation.
More generally, you'd want something more like this:
Code:
media="all"
.p7ccm01-fixed-960 {
width: 100%;
}
Bookmarks