Log in

View Full Version : Cant get adsense to center on Forumdisplay


theodonnells
07-31-2006, 06:00 PM
I have placed this code
<if condition="is_member_of($bbuserinfo, 1,2,3)">
<td class="alt2" align "center">
<tr>
<td class="alt2" align "center">&nbsp;</td>

<td class="alt1" align "center">
<div>
Adsense Code Here
</div>
</td>
</tr>
</if>
In my Forumdisplay and Showthread templates, but cant get the ad centered on the page!!
Whats wrong with the code?

FLMom
07-31-2006, 09:55 PM
you need to add <center> before the code and </ center> after the code..

just take out the space after the /

Princeton
08-01-2006, 12:49 AM
it should be
align="center">

not
align "center">


for example:
<if condition="is_member_of($bbuserinfo, 1,2,3)">
<tr>
<td class="alt2" align="center">&nbsp;</td>
<td class="alt1" align="center">
<div> Adsense Code Here</div>
</td>
</tr>
</if>

theodonnells
08-01-2006, 07:00 AM
Thanks for that.:D Working now.