Publicityclerks ads

datoneer

Up-and-Coming Sensation
Joined
Mar 16, 2012
Messages
404
Reaction score
0
FP$
7
Hello,

i need some help with css.

How can i center my ads on publicity clerks? What code i need to add in customize css block?

Thanks
 
It might work with <center> pclerks ad code </center> ?
 
You could ad a div class around it, then add to the class:
Code:
width: 728px;
margin: 0 auto;
 
Code:
<div style="text-align: center;">
Publicityclerks code
</div>

That should work.
 
html
Code:
<div id = "ad">Your add here</div>

css
Code:
#ad{
display:block;
margin-left:auto;
margin-right:auto;
}
 
Back
Top Bottom