kenfuzed
06-13-2007, 10:34 AM
I haven't seen anyone else mentioning this so I thought I would post it. On my forum I wanted to increase the length of a vertical skyscraper ad so it would include more than 3 ads. The preset size of the largest banner is 120x600 and I didn't want to load multiple modules to fill more vertical space. After playing around with the format I found that you can stack 2 or more ad scripts to create a 120x1200 skyscraper. Turns out this was really simple. I altered the keywords within each script to avoid any duplicate listings. Here is how I arranged the scripts within a module on my forum. The working ads can be viewed at http://bike-talk.com/forum/
<tr>
<td class="alt1"><div align="center">
<script type="text/javascript"><!--
auctionads_ad_client = "xxxxxxxxxxxxxxxxxxxxxx";
auctionads_ad_campaign = "";
auctionads_ad_width = "120";
auctionads_ad_height = "600";
auctionads_ad_kw = "harley parts, harley, parts, motorcycle";
auctionads_color_border = "E5E5E5";
auctionads_color_bg = "E5E5E5";
auctionads_color_heading = "8B0000";
auctionads_color_text = "333333";
auctionads_color_link = "8B0000";
auctionads_options = "n";
--></script>
<script type="text/javascript" src="http://ads.auctionads.com/pagead/show_ads.js">
</script></div><br />
<div align="center">
<script type="text/javascript"><!--
auctionads_ad_client = "xxxxxxxxxxxxxxxxxxxx";
auctionads_ad_campaign = "";
auctionads_ad_width = "120";
auctionads_ad_height = "600";
auctionads_ad_kw = "harley davidson, vtwin, v-twin, chopper";
auctionads_color_border = "E5E5E5";
auctionads_color_bg = "E5E5E5";
auctionads_color_heading = "8B0000";
auctionads_color_text = "333333";
auctionads_color_link = "8B0000";
auctionads_options = "n";
--></script>
<script type="text/javascript" src="http://ads.auctionads.com/pagead/show_ads.js">
</script></div><br /></td>
</tr>
It's my understanding that Adsense's TOS never allowed this type of stacking, but with AuctionAds we can really start to get creative with how ads are displayed. There are all kinds of combinations that could allow you to taylor these ads to your site's layout. For instance, you could stack a 120x600 with a 120x240 for a 120x840, or multiple horizontal banners to get one that fits your width... you get the idea.
<tr>
<td class="alt1"><div align="center">
<script type="text/javascript"><!--
auctionads_ad_client = "xxxxxxxxxxxxxxxxxxxxxx";
auctionads_ad_campaign = "";
auctionads_ad_width = "120";
auctionads_ad_height = "600";
auctionads_ad_kw = "harley parts, harley, parts, motorcycle";
auctionads_color_border = "E5E5E5";
auctionads_color_bg = "E5E5E5";
auctionads_color_heading = "8B0000";
auctionads_color_text = "333333";
auctionads_color_link = "8B0000";
auctionads_options = "n";
--></script>
<script type="text/javascript" src="http://ads.auctionads.com/pagead/show_ads.js">
</script></div><br />
<div align="center">
<script type="text/javascript"><!--
auctionads_ad_client = "xxxxxxxxxxxxxxxxxxxx";
auctionads_ad_campaign = "";
auctionads_ad_width = "120";
auctionads_ad_height = "600";
auctionads_ad_kw = "harley davidson, vtwin, v-twin, chopper";
auctionads_color_border = "E5E5E5";
auctionads_color_bg = "E5E5E5";
auctionads_color_heading = "8B0000";
auctionads_color_text = "333333";
auctionads_color_link = "8B0000";
auctionads_options = "n";
--></script>
<script type="text/javascript" src="http://ads.auctionads.com/pagead/show_ads.js">
</script></div><br /></td>
</tr>
It's my understanding that Adsense's TOS never allowed this type of stacking, but with AuctionAds we can really start to get creative with how ads are displayed. There are all kinds of combinations that could allow you to taylor these ads to your site's layout. For instance, you could stack a 120x600 with a 120x240 for a 120x840, or multiple horizontal banners to get one that fits your width... you get the idea.

