• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

How to Deal with Mobile Ad Sizes

imgamd85

Chevereto Member
Hi,

I have got a warning from google for Large Above Fold Ads.

I have placed one responsive ad above the image.

I want to place an ad below the image. But the prolbem is

1) If i place any ad 336x250, 468x60 the mobile users can only see half of the ad and need to scroll to see the entire ad.

2) And when i use responsive ad it takes the size of 336x250 .

Note: I am using resposnive ad above the image. It perfectly fits for mobile and desktop
 
you mean to say i have to edit the size of the height/width after generating the code from adsense?

Or i have to change something in CSS or in Dashboard.

Can you guide?
 
you mean to say i have to edit the size of the height/width after generating the code from adsense?

Or i have to change something in CSS or in Dashboard.

Can you guide?

For example,

if your ad code is placed within div block like below

Code:
<div class="block-ad">
adsense ad code here
</div>

control the height of box on different screens with media queries like

Code:
@media only screen and (max-width:960px) { 
.block-ad { max-height: 250px;}
}
@media only screen and (max-width:480px) { 
.block-ad { max-height: 100px;}
}

use !important property if needed
 
Back
Top