How to do like this ?

coolantivirus

New Member
HOw to Get the ads in that kind of box

anyone knw then please help

i wud like to have that kind of box n ads in vb .

cheerz people

example given in attachment
 
I don't know what your trying to do here, add Google adsense within a box, or have those little videos within the box.

anyway this will help add a Google adsense in a box. the box will be styled to match your forum, so if your trying to get the same box style like the image you supplied, you prob have to get a look alike style.

find in NAV BAR template

find:
Code:
<!-- / nav buttons bar -->

add below:

Code:
 <!-- Advertising segment start -->
<if condition="THIS_SCRIPT != 'newthread' AND THIS_SCRIPT != 'newreply' AND THIS_SCRIPT != 'editpost'">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
 <td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
 <td class="alt1" align="center">
    ENTER AD CODE HERE
 </td>
</tr>
</table>
</div>
$spacer_close
</if>
 
        <!-- Advertising segment end -->
 
Back
Top