K Kenpachi New Member Jun 23, 2009 #1 i want to display my ads like this -->> two square boxes side by side horizontally ... where as when i tried it on my site it does'nt display dat good .. can anyone tell me the proper procedure ?
i want to display my ads like this -->> two square boxes side by side horizontally ... where as when i tried it on my site it does'nt display dat good .. can anyone tell me the proper procedure ?
H Hoxxy New Member Jun 23, 2009 #2 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 .
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 .
K Kenpachi New Member Jun 24, 2009 #3 thanks man i'll give it a shot tested & working like a charm cheers