If you want to put two ads next to each other (i.e. on the same line — not on separate lines). This means you can e.g. put Adsense ad on the left and a Tribal Fusion on the right. Below you will see some different way of doing it:
Method 1:
use css floats, not tables…
CSS is much neater (and easier!)
<div style=”float:left;”>
<!– Ad1 –>
</div>
<div style=”float:right;”>
<!– Ad2 –>
</div>
Method 1.1:
<div id="ads" style="clear:both;padding-top:15px;"> <div style="float:left;"> <!-- adsense code --> </div> <div> <!-- adsense code --> </div> </div>
Method 2:
<div align=”center”>
<center>
<table border=”0″ cellpadding=”3″ cellspacing=”3″ style=”border-collapse: collapse” width=”400″>
<tr>
<td>
<p align=”center”>ADSENSE</td>
<td>
<p align=”center”>ADSENSE</td>
</tr>
</table>
</center>
</div>
Method 3:
Try <nobr> tags at the front of first 300×250 code
and </nobr> behind the ending of the 2nd 300×250 code.