PublicityClerks Ad Placement

USHost247

Madly Diligent
Joined
Jul 8, 2009
Messages
8,102
Reaction score
1,036
FP$
5,440
1869903


How do I make the ads display just like the ones above it? (For those that has used PublicityClerks before)

Also, at the bottom of DNTemple.net, we have 6 ads that "float: left"

What can I do to keep them floating left, but whole thing be centered in the forum?
 
I can't answer number one because of the broken image, but...

For number two, just wrap all of the ads with a div and give it a class, and add this to the CSS.

Code:
.classname {
    text-align:center;
    margin-left:-350px;
    }
 
pandaa said:
I can't answer number one because of the broken image, but...

For number two, just wrap all of the ads with a div and give it a class, and add this to the CSS.

Code:
.classname {
    text-align:center;
    margin-left:-350px;
    }
Basically, the ads go verticle when placed. PC gives you a cdn link that connects to the ad. It's just one link. I'm unsure of how to customize that into a 4 image table like the one I already have that I made manually.
 
Can you show me where the ads are? Then I can use inspect element and try to find a solution.
 
ShadyX said:
Can you show me where the ads are? Then I can use inspect element and try to find a solution.
I hid them from public. I also just switched to 728x90 on bottom.

But I will add the ads on the right sidebar under the 4 in a square.
 
You can do something like

Code:
.class {
       float: left;
       margin: 0 auto;
       position: relative;
}

.last {
	clear:right;
	margin-right:0 !important;
}

html would be
<div class="class"> AD1</div>
<div class="class last"> AD2</div>
<div class="class"> AD3</div>
<div class="class last"> AD4</div>

Assuming all that will be in another div defining the sidebar width etc.
 
Dean@Simplix said:
You can do something like

Code:
.class {
       float: left;
       margin: 0 auto;
       position: relative;
}

.last {
	clear:right;
	margin-right:0 !important;
}

html would be
<div class="class"> AD1</div>
<div class="class last"> AD2</div>
<div class="class"> AD3</div>
<div class="class last"> AD4</div>

Assuming all that will be in another div defining the sidebar width etc.
Thanks for the help, but in the div classes, I only have one link that makes all 4 images.
 
Back
Top Bottom