Quote:
Originally Posted by edermix
Actually, I made it using the template SHOWTHREAD.
But I do have a problem of spacing between the ad1 and AD2. Look at my code:
PHP Code:
<!-- / ADSENSE --> <br /> <div style="padding: $stylevar[cellpadding]px0px 0px 0px" class="tborder"> <table class="thead" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="thead" align="$stylevar[left]">$vbphrase[gapi_sponsor]</td> </tr> <tr class="alt1"> <td> ad 1</td> <td> ad 2</td> <td> ad 3</td> <td> ad 4</td> <td> ad 5</td> </tr> </table> </div> <!-- / ADSENSE -->
And look at the picture:
Attachment 89013
And between each TD would leave a line dividing each Adsense. How can I fix this?
|
In another words you don't want the cell dividers (lines) that come with the td cells to separate each ad. Why not just put all the adds in one wide td cell?
For instance:
<td align="center"> ad 1 ad 2 ad 3 ad 4 ad 5 </td>
Perhaps that will look better.