Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 11-04-2008, 01:01 PM
edermix edermix is offline
 
Join Date: Aug 2008
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Adsense

How do this adsense, in this format? note that is divided into tables (tables).

Look:

Attachment 88974
Reply With Quote
  #2  
Old 11-04-2008, 01:11 PM
punchbowl punchbowl is offline
 
Join Date: Nov 2006
Posts: 505
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Doesn't look like adsense to me
Reply With Quote
  #3  
Old 11-04-2008, 02:27 PM
edermix edermix is offline
 
Join Date: Aug 2008
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by punchbowl View Post
Doesn't look like adsense to me
Adsense This is a Mercado Livre (http://guia.mercadolivre.com.br/ganh...ense-30163-VGP).

It is like a Google Adsense.

See a working Forum:

http://forum.clubedohardware.com.br/...igabyte/585544
Reply With Quote
  #4  
Old 11-04-2008, 02:34 PM
SEOvB's Avatar
SEOvB SEOvB is offline
 
Join Date: May 2007
Location: Indianapolis
Posts: 2,451
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You just make a table with more columns?

<table>
<tr>
<td> ad 1</td>
<td> ad 2</td>
<td> ad 3/td>
<td> ad 4</td>
<td> ad 5</td>
</tr>
</table>

If your using 3.7 you can use the adlocation_afterfirst post template
Reply With Quote
  #5  
Old 11-04-2008, 03:27 PM
edermix edermix is offline
 
Join Date: Aug 2008
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great man.. I will test

--------------- Added [DATE]1225897367[/DATE] at [TIME]1225897367[/TIME] ---------------

How can I put this at the end of the last post?

What I have to change template?

PS.: I'm using the mod https://vborg.vbsupport.ru/showthrea...hlight=adsense

Thank's
Reply With Quote
  #6  
Old 11-05-2008, 02:06 PM
SEOvB's Avatar
SEOvB SEOvB is offline
 
Join Date: May 2007
Location: Indianapolis
Posts: 2,451
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try the adlocation before quick reply
Reply With Quote
  #7  
Old 11-05-2008, 03:30 PM
edermix edermix is offline
 
Join Date: Aug 2008
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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">
    
<
tdad 1</td>
<
tdad 2</td>
<
tdad 3</td>
<
tdad 4</td>
<
tdad 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?
Reply With Quote
  #8  
Old 11-05-2008, 03:43 PM
TundraSoul TundraSoul is offline
 
Join Date: Mar 2002
Posts: 155
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by edermix View Post
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">
 
<
tdad 1</td>
<
tdad 2</td>
<
tdad 3</td>
<
tdad 4</td>
<
tdad 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">&nbsp;&nbsp;ad 1&nbsp;&nbsp;ad 2&nbsp;&nbsp;ad 3&nbsp;&nbsp;ad 4&nbsp;&nbsp;ad 5&nbsp;&nbsp;</td>

Perhaps that will look better.
Reply With Quote
  #9  
Old 11-05-2008, 03:51 PM
SEOvB's Avatar
SEOvB SEOvB is offline
 
Join Date: May 2007
Location: Indianapolis
Posts: 2,451
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by edermix View Post
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">
    
<
tdad 1</td>
<
tdad 2</td>
<
tdad 3</td>
<
tdad 4</td>
<
tdad 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?
<table>
<tr>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
</tr>
</table>


Remember you can only display 3 contextual adsense units per page.
Reply With Quote
  #10  
Old 11-05-2008, 05:29 PM
edermix edermix is offline
 
Join Date: Aug 2008
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TundraSoul View Post
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">&nbsp;&nbsp;ad 1&nbsp;&nbsp;ad 2&nbsp;&nbsp;ad 3&nbsp;&nbsp;ad 4&nbsp;&nbsp;ad 5&nbsp;&nbsp;</td>

Perhaps that will look better.
No, because for my plans at each table will be easier to centralization. Thank's.

Quote:
Originally Posted by FRDS View Post
<table>
<tr>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
<td width="20%" style="border:0px;" align="center"> ad 1 </td>
</tr>
</table>

Remember you can only display 3 contextual adsense units per page.
Excellent, excellent, excellent! Very good, Thank you again for all the help and attention!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:13 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05013 seconds
  • Memory Usage 2,307KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete