What side banner do you use for mobile?

click here

Active member
Curious... what size ad banner do you use for the top of mobile view, 336x280 will display perfectly but is it to obnoxious? I'm talking for non Premium Members. ;)
 
I would stick to 300x250... that size works well in your sidebar too if you increase the sidebar width to >300px so you can use the same sized ads desktop & mobile
 
It depends on the width:
if ( adWidth >= 336 )
google_ad_size = ["336", "280"];
else if ( adWidth >= 300 )
google_ad_size = ["300", "250"];
else if ( adWidth >= 250 )
google_ad_size = ["250", "250"];
else if ( adWidth >= 200 )
google_ad_size = ["200", "200"];
else
google_ad_size = ["250", "250"];
 
Top Bottom