Having difficulty hiding responsive ad with meida queries. This the style that I have in the ad code:
<style>
.xxxxx {display:inline-block; width: 120px; height: 600px; }
@media (max-width: 890px) { .xxxxx { display: none; } }
@media(min-width: 930px) { .xxxxx { width: 160px; height: 600px; } }
@media(min-width: 1070px) { .xxxxx { width: 300px; height: 600px; } }
</style>
However it does not hide in the smaller screens although I do get the different sizes according to the media queries.
I test all my ad placements and media queries with a blank image - and it works fine, but not with the actual ad.