XF 2 Ad Manager Assistance

dbk

Member
I have UI.X Pro theme by Themehouse as my forum theme integrated with their XPress WP Front Page. I have a very small handful of sponsors through which I run ads served by Google Ad Manager.

I would like someone to set this up so that the ads get served in the appropriate size by device so they do not cause horizontal scroll outside the container on mobile devices. I've tried but failed. Additionally, I would like to set up a very small number of geographically target ads, as it is a global forum so the sponsors may be irrelevant depending on where users live.

I imagine this is a quick job for someone with, um, actual skills.
 
I have UI.X Pro theme by Themehouse as my forum theme integrated with their XPress WP Front Page. I have a very small handful of sponsors through which I run ads served by Google Ad Manager.

I would like someone to set this up so that the ads get served in the appropriate size by device so they do not cause horizontal scroll outside the container on mobile devices. I've tried but failed. Additionally, I would like to set up a very small number of geographically target ads, as it is a global forum so the sponsors may be irrelevant depending on where users live.

I imagine this is a quick job for someone with, um, actual skills.
We can work on this. Feel free to start a conversation with me.
 
You should be able to do this yourself with HTML5, something like this:

1. Add a class to any ad images, like this: <img src="ad.jpg" alt="" class="ad_responsive">

2. Then add this to extra.less:

Code:
.ad-responsive {
    max-width: 100%;
    height: auto;
}
 
Top Bottom