Hi,
I am using reponsive ads since begin and I really like options to resize reponsive ad unit based on media screen size. But last half year reponsive ads are ignoring my settings and do what they want, for example I have ad with css: .my_main_ad
And then I use this CSS:
@media only screen and (max-width: 767px) {
.my_main_ad { width: 300px; height: 250px; }
}
That means, on screen under 767px width, show this ad as 300x250 banner. So i go test it to browser, set screen 500px and I see something like 260x80, totally different ad sizes. Small and not nice to click on. If i change code to this:
@media only screen and (max-width: 767px) {
.my_main_ad { width: 300px !important; height: 250px !important; }
}
Only what happens is that ad will rly have 300x250, but inside will be again destructed ad unit 260x80.
Do you have this issue to, or am I doing something wrong? Problem isn't just that I cant control all my ad unit throught all media sizes, but some media units are violating ads policy cause they ignore my settings like width, height and padding etc...