How to Display ads Like this ?

Kenpachi

New Member
i want to display my ads like this -->>

122z2mh.jpg


two square boxes side by side horizontally ...

where as when i tried it on my site it does'nt display dat good ..

152l2ps.jpg


can anyone tell me the proper procedure ?
 
HTML:
 <!-- Start: Wrap -->
<div id="wrap">

 <!-- Start: Left -->
<div id="left">
		 
AD CODE HERE
		 
</div>
 <!-- End: Left -->
		 
 <!-- Start: Right -->
<div id="right">
		       
AD CODE HERE

</div>
<!-- End: Right --> 

</div>
<!-- End: Wrap -->

Add to style additional css section:
Code:
#wrap
{
      width:600px;
      margin:0 auto;
}
	  
#left
{ 
      width: 300px;
      float: left;
}

#right
{ 
      float: right;
      width: 300px;
      display: inline;
      position: relative;
}

Change widths to suit your needs but remember left width + right width = wrap width

also if you intend to have this more then one instanse of this on a single page change id= to class= and # to .
 
Back
Top