VALEEDANJUM

Ad 468 X 60

Showing posts with label Ad Code Converter. Show all posts

Monday 18 March 2013

Blogger Ad Code Converter

Blogger Ad Code Converter

Most of the ad code that you paste directly into blogger template will not work. Maybe there will be no error message when you save the template code changes, but when your blog page loaded in the browser, there are no ads appear.

What's really going on here? Adsense, Chitika or Amazon ad code is a javascript code in which there are some characters that cannot be used directly in the blogger template. You must change these characters into XHTML entities before being put into the template. You can use the tool below to convert ad code automatically. 


Paste the ad code and then press the "Convert Ad Code" button:


  1. Enter the Adsense/other Code in the Below Box
  2. Click on "Convert Ad Code".


This simple online tool  will convert some characters such as > < and " to HTML entities. For example:
This is a piece of Google Adsense code. 

<script type="text/javascript"><!--
google_ad_client = "pub-1234567890123456";
/* 468x60, created 3/12/09 */
google_ad_slot = "1234567890";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

into this code

&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-1234567890123456&quot;;
/* 468x60, created 3/12/09 */
google_ad_slot = &quot;1234567890&quot;;
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;




Read More »