My site has been created in css. I want to put three Google ads Large Rectangle (336 x 280) side by side, all three ads in single row. Please suggest what code should i use to make this possible?
You can use table to that..... <table> <tr> <td>Google code 1</td> <td>Google Code 2</td> <td>Google code 3</td> </tr> </table>
I think something like this should work <div style="width:1008px;"> <div style="width:336px; float:left">ad1</div> <div style="width:336px; float:left">ad2</div> <div style="width:336px; float:left">ad3</div> </div> <div style="clear:both"> </div> Code (markup): (*not tested)