Hi,
Sorry for the delay. I had a look at the link however I assume things have changed in the last few months.
In the Ad King Pro settings area, there is a custom CSS box that you can add custom code into to be able to do things like you require.
For example, for your Northwest Hot Springs ad. Say you wanted to have that aligned right on your sidebar, you could write:
.banner9950 {
float: right; // or text-align: right; or text-align: center; if you wanted them in the middle of the sidebar.
}
Because that image doesn’t fully span that sidebar width, you could force the image to stretch full width:
.banner9950 img {
width: 100%;
}
If you wanted all your ads in that sidebar to the same thing:
.adkingprobanner.sidebar {
float: right; // or text-align: right; or text-align: center; if you wanted them in the middle of the sidebar.
}
.adkingprobanner.sidebar img {
width: 100%;
}
Hope that helps