Log in

View Full Version : Integration with vBulletin - A perfectly centered Adsense banner below the navbar that is loaded AFTER other ADs


StarBuG
03-29-2010, 10:00 PM
Hello everyone.

I had the following problem:
I want to show a leaderboard banner below the navigation centered.
My leaderboard was clicked only half as often as the banners I showed in the thread as 2nd post.
So I wanted to load my leaderboard banner AFTER the 2nd post banners so that they get the highest paying keywords.

I found a complex but perfect solution for this:

The settings for my forum:
vBulletin 4.0.2
Fixed width for the forum and the forum is centered.
The banner position is exactly 253px from the top.

In Template ad_global_below_navbar add:


<div id="ads_navbar_container"></div>
Click Save

The ads_navbar_container creates an empty "box" that spans from left to right and has a hight of 100px.
This is the background box on which I will display the adsense banner.

In Template ad_footer_end add:


<div id="ads_navbar_container_2">
<div id="ads_navbar">
YOUR ADSENSE CODE HERE
</div>
</div>
Click Save

This is the actual Adsense Leaderboard.
It is wraped inside a container (ads_navbar_container_2) that is positioned from the top to fit inside the box we created before (in this case 253px from the top).

After that we define the AD in ads_navbar and center it within the previous container.
If you use other banner formats change the width to fit the banner width.

In Template additional.css add:


#ads_navbar_container {
border: 1px solid #CECECE;
background: #EBEDF0;
width:100%;
height:100px;
margin-left: auto;
margin-right: auto;
}

#ads_navbar_container_2 {
position: absolute;
top: 253px;
left: 0px;
width: 100%;

}

#ads_navbar {
position: absolute;
width: 728px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
Change the colors of the background box to colors that fit your theme.
Adjust the top position to fit your layout.
Change the banner width and box height if you use other formats then a leaderboard.

Click Save

E voila, a perfectly centered banner that is loaded last (displays the lowest paying keywords).

If you want to load it in between 2 other ads, simply search for an ad template that is loaded after the first and before the second and put the ad code there instead of the footer ad template.

In my case I only did this "trick" for banners that are shown to guests which are viewing a thread.
That is done via conditionals.

Instead of the above add the following to your ad_global_below_navbar template:


<vb:if condition="THIS_SCRIPT != 'showthread'">
<div class="ads_navbar_container">
<div class="ads_navbar">
YOUR AD CODE HERE
</div>
</div>
<vb:else />
<vb:if condition="THIS_SCRIPT == 'showthread' AND $show['guest']">
<div id="ads_navbar_container_guests"></div>
</vb:if>
<vb:if condition="THIS_SCRIPT == 'showthread' AND $show['member']">
<div class="ads_navbar_container">
<div class="ads_navbar">
YOUR AD CODE HERE
</div>
</div>
</vb:if>
</vb:if>
In Template ad_footer_end add:


<vb:if condition="THIS_SCRIPT == 'showthread' AND $show['guest']">
<div id="ads_navbar_container_2_guests">
<div id="ads_navbar_guests">
YOUR ADSENSE CODE HERE
</div>
</div>
</vb:if>
Click Save

In Template additional.css add:


.ads_navbar_container {
border: 1px solid #CECECE;
background: #EBEDF0;
width:100%;
margin-left: auto;
margin-right: auto;
}

.ads_navbar {
position: relative;
width: 728px;
margin-left: auto;
margin-right: auto;
}

#ads_navbar_container_guests {
border: 1px solid #CECECE;
background: #EBEDF0;
width:100%;
height:100px;
margin-left: auto;
margin-right: auto;
}

#ads_navbar_container_2_guests {
position: absolute;
top: 253px;
left: 0px;
width: 100%;

}

#ads_navbar_guests {
position: absolute;
width: 728px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
Best regards

StarBuG

https://vborg.vbsupport.ru/ (http://www.AdSenseExperts.com)

Google isn't paying you enough money! Discover WHY! (http://www.adsenseexperts.com/consulting/adsense-optimization-service.html)

Da-Vinci
03-30-2010, 01:52 PM
Demo?

StarBuG
03-30-2010, 03:09 PM
Currently only on my vB construction Forum so no public access.

But besides that you simply see a leaderboard banner below the
navigation that is always centered there is nothing more there to see

tafreeh
03-31-2010, 03:54 AM
What about a screenshot then :)

StarBuG
03-31-2010, 06:46 AM
A screenshot from an Adsense Banner?

Ok, added to the first post.

sKippah
03-31-2010, 01:38 PM
Could u add a refresh timer. That it refresh itself?

StarBuG
03-31-2010, 07:59 PM
That is against Google Adsense TOS

reteep
04-01-2010, 09:06 AM
I just checked your forum, did you use a plugin for the AdSense Banners between the posts? Furthermore I believe adding those images besides the AdSense Banners is against the TOS, too. Please correct me if I'm wrong.

Cheers,
Andreas

StarBuG
04-01-2010, 09:29 AM
The modification I posted here is for the leaderboard below the navigation.
It loads after the 2 rectangle banners in the 2nd post.
Yes I use it on Patientenfragen.net (http://www.patientenfragen.net/en/) too.

I currently have an inquiry for the image placements.
Did not get an answer from google yet though.
So I can't really tell

StarBuG

woffie
04-02-2010, 11:47 AM
Why use this when it is built into the software?

StarBuG
04-02-2010, 03:27 PM
Because it is not build into the software ;)

dankreiner
04-13-2010, 09:49 PM
this trick works! your other mod did not on 4.0.3

StarBuG
04-14-2010, 06:32 AM
which other mod?

If it was released for vB4 it works on vB4 because I write all my Mods for my Forum and they are all implemented.
But if you use different settings then I describe at the beginning of the mod then you maybe need to alter the code.

dankreiner
05-02-2010, 06:27 PM
i am having a problem... this mod does not work correctly on my arcade (http://www.phantank.com/arcade.php) or my classifieds (http://www.phantank.com/classifieds.php) page (both mods).

The ads all show at the bottom of the page... Is there any way you could please fix this for me??? It is such a big deal and nobody else knows what i am talking about.

StarBuG
05-05-2010, 03:10 PM
I don't use these mods so sorry, can't fix it.

But modifing it shouldn't be that hard.
You maybe need to create different containers like in the ad_global_below_navbar and maybe copy, modify and rename the css settings

By the way, do you really need to switch the display order of your ads on these pages?
If not simply implement the banner as you did before.

This mod is NOT a mod to display a leaderboard below the navbar.
The main purpose is to switch the loading order of different ads!!

ShawneyJ
05-06-2010, 03:04 AM
looks way better thank you. installed.

Donatello
02-10-2011, 05:02 AM
for me was easiest add after your AdSense Code in ad_global_below_navbar
<center> </center>
in scrip same this:

<center><script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><vb:if condition="$adsshown[] = 1"></vb:if></div></center>

tbellik
09-19-2016, 06:31 AM
Thanks........