• Please note that our support is not available weekly from : Thursday 15:00 (GMT+2) to Saturday 13:00 (GMT+2)

How to Make Responsive Image Banner

New Member
Hi, admin

i try to add 720x90 banner on ad_above_top_breadcrumb and other ad placement, but when see it with smartphone the image is not responsive
how to fix it? i used cloud pro

Thank you
 
Staff member
Hello,
add this code to "ad_above_top_breadcrumb" template
HTML:
<div class="banner">
<img src="image url" />
</div>

and this code to "Extra.CSS"

Code:
.banner img
{
display: inline-block;
max-width: 100%;
}
 
Top