Image

Imagekcredden wrote in Imagewebdev 😃happy

Listens: Andy Williams '(Where do I begin) Love Story'

Fixed the ads!

Just wanted to thank everyone for helping me fix the ad problem on my web site. I got 'em fixed! whoohoo!! (www.kevinredden.name)

I was cleaning out some old backup disks, and found some really old versions of the site, and noticed the ads worked. Cut/pasted the old ad code, and it worked.

Compairing the code, I found that the last two lines was goofed up somehow.

To help you all, here's the old code compared to the new code. The changed code is in bold/italics

OLD CODE

 <script type="text/javascript">
<!--
google_ad_client = "pub-2000864594708265";
google_ad_width = 120;
google_ad_height = 600;
google_ad_format = "120x600_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "000000";
google_color_bg = "ffffff";
google_color_bg = "CCFFFF";
google_color_link = "FF3300";
google_color_url = "FF3300";
google_color_text = "000000";
//-->
</script>
<script type="text/javascript" src="show_ads.js">

CORRECT

<script type="text/javascript">
<!--
google_ad_client = "pub-2000864594708265";
google_ad_width = 120;
google_ad_height = 600;
google_ad_format = "120x600_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "000000";
google_color_bg = "ffffff";
google_color_bg = "CCFFFF";
google_color_link = "FF3300";
google_color_url = "FF3300";
google_color_text = "000000";
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>



I've printed this out, and put it in the safe-deposit box :)

So thanks to everyone who confirmed and also helped.

- Kc