Forum Moderators: not2easy
@media screen
and (min-width: 320px)
and (max-width: 380px)
and (orientation: portrait)
/*main cointainers */
div.middlenoadverts1column listed with media query for @media screen
and (min-width: 320px) the min-width of 250px is well over the results for: width: 60%;
min-width: 250px; (which is 192px @320px width) and only 170px is usable with 8px padding and a 1px border, with 2px margin (body element) if a person were not in landscape mode. It is best to consider worst case possibilities. @media screen
and (min-width: 381px) the width on a 1024 screen, for example, would be width: 79%;
min-width: 250px; which results in 809px wide (786 after padding, margins, etc.)