My ads are all bunching together. How do I add space between them?
To add some space between your ads, you can use the following CSS:
.adplugg-tag .adplugg-ad {
margin-bottom: 1em;
}
If you aren't familiar with css, this says to put a 1 character bottom margin on each of your ads. You can change the 1em to 2em for more space or 0.5em etc. for less.
For it to work, you add the above CSS to your site's stylesheet. If you are using WordPress, you can do the following to modify your stylesheet
EDIT 2015-09-11: The latest version of AdPlugg includes a wrapper div with a class of "adplugg-ad" around all ads. It's now better to set the margin on the wrapper div instead of on the img tag. I've updated the above CSS to reflect the change.
EDIT 2015-12-14: Some users have had success with their theme using this CSS (note the addition of "display: table;"):
.adplugg-tag .adplugg-ad {
margin-bottom: 1em;
display: table;
}
Hi,
I also tried this, including the new CSS code listed and it also doesn't work in my theme; and makes the ads appear literally on top of each other. I tried adding a second widget to the page and all it did was repeat the ads!!!
Any other suggestions please???