Showing posts with label H - How to. Show all posts
Showing posts with label H - How to. Show all posts

How to Put Adsense Inside Your Post (for Blogger or Blogspot)



Adsense inside the post can be considered to increase or optimize your adsense revenue. It certainly can increase your CTR (Click Through Rate). Adsense, there are alternatives to put it inside posting, below the page title (like in this post) or below your article, and you can also set your adsense alignment (right or left). Many blogger or blogspot users experienced difficulties, especially new user to put adsense inside the posting. Well.. it is not too difficult, in this post I will show you the easy way to put adsense inside your post. Just follow this steps to put adsense inside blog post (implement this technique if your blog has "read more..." feature).

1. Get Your Adsense Code
Firstly, log in to your adesense account and create new ads. It is up to you about the ad size, but it is better if you choose large rectangle ads format. Okay now you have the adsense code. You can not put your adsense code directly, you need to "parse the adsense code", how?? Just go to http://blogcrowds.com/resources/parse_html.php ,paste your code and click "Parse". Now select the parse result and copy it.

2. Put Your Adsense Code
Go to blogger.com and log in to your account. Now go to "layout section", edit html. Click "Expand template widget" and find this code <data:post.body/> or <p><data:post.body/></p>.

If you want to put adsense below the article, paste the adsense parse result below this tag <data:post.body/> or <p><data:post.body/></p>

If you want to put adsense above the article (below the page title), paste the adsense parse result above this tag <data:post.body/> or <p><data:post.body/></p> . You need to position it before you save your template. Wrap your adsense parse code with <div style='float: alignment (left or right)?;'> Your adsense code after parse </div>
For Example :
<div style='float: alignment left or right (choose one)?;'>
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxxxxxxxxxxxxx&quot;;
google_ad_host = &quot;pub-1599271086004685&quot;;
/* 336x280, created 5/25/09 */
google_ad_slot = &quot;9262982660&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&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;
</div>

<p><data:post.body/></p>

3. Save and Confirm

Done !!! See the result... :)


how to add code to make READ MORE in every post - for Blogsome or Wordpress


Aww bless, just Shana is fine Smile

Aww bless, just Shana is fine Smile


Go to Manage, Files and scroll down and choose the post template file. There you’ll see

Code:
{content}

replace that with

Code:
{the_content more_link_text="TEXT YOU WANT TO USE"}

Then when posting, if you’re using the plain text editor there’s a ‘more’ link, or you can add it manually, where you want the break as:

Code:
<!--more-->

I’m sure there’s a corresponding button on the WYSIWYG.


Customizing Blogger post Navigation script





Blogger Blogs have default post navigation script which allows user to navigate between posts.It consists of ” older posts” , “Newer posts” and ” Home page” link. Since it’s default , no CSS codings are added for the navigation script. So in this post I will explain how to modify the script and to add background images and then aligning the older posts and newer posts links properly.



Know the script codes


Before explaining how to customize the codes , I would like to explain the tags involved in the blogger templates which control the blogger post navigation script.




CSS codes


Firstly, let us see the default code included in minima or Rounders blogger template.


#blog-pager-newer-link {

float: $startSide;

margin-$startSide: 13px;

}

#blog-pager-older-link {

float: $endSide;

margin-$endSide: 13px;


}


#blog-pager {

text-align: center;

}


instead of startside and endside we can have left and right respectively.

#blog-pager-newer-link : this code contains the css necessary for newer posts link

#blog-pager-older-link : this code contains the css necessary for older posts link

and #blog-pager controls the contains necessary for Home page links.


If you are using custom blogger template , then you will find something like this :


#blog-pager-newer-link {

padding-left : 20px;

border : none;

float : left;

}

#blog-pager-older-link {

float : right;

padding-right : 20px;

border : none;


}

#blog-pager {

padding : 0 15px 0;

text-align : center;

}

.blog-pager a {

color : #cc0000;

}

.blog-pager a:hover {


color : #cc0000;

}



XML tags which shows the post navigation links


Now let us see the default tags included in the blogger templates which shows post navigation links.To see this tag , you need to check ” expand widget templates” option in EDIT HTML page of the blogger template.


There you can find the following tag


<b:includable id=’nextprev’>

<div class=’blog-pager’ id=’blog-pager’>

<b:if cond=’data:newerPageUrl’>


<span id=’blog-pager-newer-link’>

<a class=’blog-pager-newer-link’ expr:href=’data:newerPageUrl’ expr:id=’data:widget.instanceId + &quot;_blog-pager-newer-link&quot;’ expr:title=’data:newerPageTitle’><data:newerPageTitle/></a>

</span>

</b:if>

<b:if cond=’data:olderPageUrl’>

<span id=’blog-pager-older-link’>

<a class=’blog-pager-older-link’ expr:href=’data:olderPageUrl’ expr:id=’data:widget.instanceId + &quot;_blog-pager-older-link&quot;’ expr:title=’data:olderPageTitle’><data:olderPageTitle/></a>


</span>

</b:if>


<b:if cond=’data:blog.homepageUrl != data:blog.url’>

<a class=’home-link’ expr:href=’data:blog.homepageUrl’><data:homeMsg/></a>

<b:else/>

<b:if cond=’data:newerPageUrl’>

<a class=’home-link’ expr:href=’data:blog.homepageUrl’><data:homeMsg/></a>


</b:if>

</b:if>


</div>

<div class=’clear’/>

</b:includable>


As mentioned in the CSS codes itself,



  • <b:if cond=’data:newerPageUrl’> contains the code to show newer post links.


  • <b:if cond=’data:olderPageUrl’> contains the code necessary to show older posts link.

  • <b:if cond=’data:blog.homepageUrl != data:blog.url’> will contain the code necessary to show Home Page Link.


Hope now you know about the code which controls the Older post and Newer post links for post navigation. Now let us see how to customize this script to suit our blogger template.



Adding background image along with text


Let us see how to add Background image to the text Older Posts and Newer Posts.


Go to EDIT HTML SUBTAB and then search this following code or similar.


#blog-pager-newer-link {

float: $startSide;

margin-$startSide: 13px;

}

#blog-pager-older-link {

float: $endSide;

margin-$endSide: 13px;

}



#blog-pager {

text-align: center;

}


Now replace the whole code with



#blog-pager-newer-link {

background : url(http://i43.tinypic.com/11bro1s.jpg) no-repeat left 0%;

padding-left : 20px;

border : none;


float : left;

}

#blog-pager-older-link {

float : right;

background : url(http://i44.tinypic.com/2n6dirp.jpg) no-repeat right 0%;

padding-right : 20px;

border : none;

}

#blog-pager {


padding : 0 15px 0;

text-align : center;

}

.blog-pager a {

color : #cc0000;

}

.blog-pager a:hover {

color : #cc0000;

}


In that you can change the background images and then customize the color of the text. That’s it now save your template , you can find something like this :

post navigation image



Replace Image with Background images


To replace the “older posts” , ” Newer Posts” and “Home” text with background images , follow these simple steps.


replace the css code for blog post navigation widget with this code



#blog-pager-newer-link {

padding-left : 20px;

border : none;


float : left;

}

#blog-pager-older-link {

float : right;

padding-right : 20px;

border : none;

}

#blog-pager{

padding:50px 10px 10px 10px;


text-align:center;

}

.blog-pager a{

color:#A10000

}

.blog-pager a:hover{

color:#15FFED

}


and then save your template. Now check ” Expand Widget Templates” option and now replace the



<b:includable id=’nextprev’>

<div class=’blog-pager’ id=’blog-pager’>

<b:if cond=’data:newerPageUrl’>

<span id=’blog-pager-newer-link’>

<a class=’blog-pager-newer-link’ expr:href=’data:newerPageUrl’ expr:id=’data:widget.instanceId + &quot;_blog-pager-newer-link&quot;’ expr:title=’data:newerPageTitle’><data:newerPageTitle/></a>

</span>

</b:if>

<b:if cond=’data:olderPageUrl’>

<span id=’blog-pager-older-link’>

<a class=’blog-pager-older-link’ expr:href=’data:olderPageUrl’ expr:id=’data:widget.instanceId + &quot;_blog-pager-older-link&quot;’ expr:title=’data:olderPageTitle’><data:olderPageTitle/></a>

</span>

</b:if>


<b:if cond=’data:blog.homepageUrl != data:blog.url’>

<a class=’home-link’ expr:href=’data:blog.homepageUrl’><data:homeMsg/></a>


<b:else/>

<b:if cond=’data:newerPageUrl’>

<a class=’home-link’ expr:href=’data:blog.homepageUrl’><data:homeMsg/></a>

</b:if>

</b:if>


</div>

<div class=’clear’/>

</b:includable>



with this code


<b:includable id=’nextprev’>

<div class=’blog-pager’ id=’blog-pager’>

<b:if cond=’data:newerPageUrl’>

<span id=’blog-pager-newer-link’>

<a class=’blog-pager-newer-link’ expr:href=’data:newerPageUrl’ expr:id=’data:widget.instanceId + &quot;_blog-pager-newer-link&quot;’ expr:title=’data:newerPageTitle’><img alt=’techieblogger.com’ src=’http://i69.photobucket.com/albums/i42/queenofdreamsz/NextIcon.gif’ title=’Newer Post’/></a>


</span>

</b:if>

<b:if cond=’data:olderPageUrl’>

<span id=’blog-pager-older-link’>

<a class=’blog-pager-older-link’ expr:href=’data:olderPageUrl’ expr:id=’data:widget.instanceId + &quot;_blog-pager-older-link&quot;’ expr:title=’data:olderPageTitle’><img alt=’Techie Blogger’ src=’http://i69.photobucket.com/albums/i42/queenofdreamsz/BackIcon.gif’ title=’Older Post’/></a>


</span>

</b:if>


<b:if cond=’data:blog.homepageUrl != data:blog.url’>

<a class=’home-link’ expr:href=’data:blog.homepageUrl’><img alt=’Techie Blogger’ src=’http://i85.photobucket.com/albums/k47/bongmalove/icon/home.gif’ title=’Home Page’/></a>

<b:else/>


<b:if cond=’data:newerPageUrl’>

<a class=’home-link’ expr:href=’data:blog.homepageUrl’><img alt=’Techie Blogger’ src=’http://i85.photobucket.com/albums/k47/bongmalove/icon/home.gif’ title=’Home Page’/></a>

</b:if>

</b:if>


</div>


<div class=’clear’/>

</b:includable>


You can change the images included with your own blog navigation images. After that save your template and check your blog. You can find a blog navigation links something like this :



post navigation


Show blog post navigation above posts title


You can also show the blog post navigation script above post title too. In order to implement this hack , go to EDIT HTML page of your blog and check ” EXPAND WIDGET TEMPLATES” option. Now search this tag in your template.



  • <b:includable id=’main’ var=’top’>



Now paste the following code immediately below it




  • <b:include name=’nextprev’/>



Troubleshooting problems with blog post navigation script


Few might have noticed that the Blog post navigation links will be misaligned sometimes. Newer post , Older post and Home page links will get together. So it means that the CSS codes are missing for the file. To overcome this problem , just copy and paste the corresponding CSS code you need above ]]></b:skin> .


Blog post navigation missing



Sometimes the blog post navigation may be missing in your blog. It’s because the blog post navigation code may be missing in your template. To overcome this problem , search this tag in your template with ” expand widget templates” option enabled.


<b:include name=’nextprev’/>


if the tag is missing , then add the above tag in your template below <b:includable id=’main’ var=’top’> as shown in the image.


troubleshooting Customizing Blogger post Navigation script


Hope this post will be helpful for all blogger newbies. If you need any other customization then feel free to ask in comment form below.


Popularity: 7%


Display CSS codes and Scripts in unique Style – Blogger Post Styling hack




All of you might have noticed that in my blogger posts I use a custom CSS style to show CSS codes , Scripts and other important notes. After looking at this cool features one of my reader asked me how to do this. So I am Posting this ” Post Styling Hack for blogger to display scripts and CSS codes in unique style ” .
Just Follow This steps to add this ” Post Styling Hack ” to your Blog .

Step 1 :

Login to your Blogger account and navigate to Layout section . Then go to Edit Html subtab .

No Need to Check Expand Widgets Box

Step 2 : Add This CSS code above this line ]]> .


.hint {
border : 1px solid #4ab7ff;
font-size : 11px;
color : #191919;
background : #bfe5ff url(http://i400.photobucket.com/albums/pp88/jumbledpics/info.gif) no-repeat 5px center;
font-family : Verdana, sans-serif, "Courier New";
line-height : 125%;
margin : 5px 0 0;
padding : 12px 12px 12px 40px;
display : block;
font-weight : 400;
width : 85%;
}


See Screenshot Below for Instructions :

Blogger Post Styling Hack


you can change the text in red to your wish to suit your Template.

Step 3 :

Whenever you create new posts just include the speical Script ( CSS code , Scripts , etc ) within this div section .

<div class=<hint>


Insert the Special code here


</div>



Don’t use id instead of class



that’s it you have add this post Styling hack to your blogger template celebrate .




How to Setup Your Recent Posts and Recent Comments Blogger Page Elements



Recent Comments widget/plugin makes your blog more 'visitor-friendly'.
This post explains how you can add Recent Comments widget to your blogger blogs easily!

Just do the following simple steps:

  1. Go to Blogger Layout page
  2. Click Add a Gadget where you want to add Recent Comments
  3. Select Feed from the list:
    Add Recent Comments Widget to Blogger!
  4. Add your blog's comments feed as:
    http://YOUR BLOG.com/feeds/comments/default

    Add Recent Comments Widget to Blogger!
  5. Now choose the number of recent comments to display:
    Add Recent Comments Widget to Blogger!
  6. Click Save. Finished!


Have a great blogging!

HTML and JavaScript inside blogger posts using custom display boxes




It is very difficult for anyone using Blogger blogs to show HTML codes and JavaScript inside the blog posts . You might have also seen people showing the scripts in small display boxes of fixed length and width. Now after applying this Blogger trick ,
you would be able to show HTML and JavaScript inside Blogger posts with custom display boxes .




Click on layout of the blog in which want show HTML or JavaScript and now select edit HTML .

Before you apply any Blogger hack ,remember to download and save your full template.


Now tick the expand widget templates and move onto the selection shown below ( towards the end of CSS code ) .



HTML and JavaScript inside blogger posts using custom display boxes

Otherwise you can press Cntrl+F and paste ]]></b:skin> on appearing search box then enter


Paste the following CSS code above that line .



pre
{
background:#efefef;
border:1px solid #A6B0BF;
font-size:120%;
line-height:100%;
overflow:auto;
padding:10px;
color:#000000 }
pre:hover {
border:1px solid #efefef;
}
code {
font-size:120%;
text-align:left;
margin:0;padding:0;
color: #000000;}
.clear { clear:both;
overflow:hidden;
}






The above code is for drawing a display box inside the Blogger post to show HTML and JavaScript.You can change the length ,width ,size and color of the box , back ground image etc. by editing the CSS code. After adding this code you can call the display box anytime into your post by following next step.








<pre>

"your HTML or JAVA script"

</pre>



In Blogger in draft , there would be a problem with this HTML and JavaScript display box . For fixing that,


Expand Post options from the Blogger text editor ( On the bottom left corner ) . From the compose settings, select
Interpret typed HTML . Now everything would appear fine .



Before you add "your HTML or JAVA script " make it post friendly by following this link

Inside the box provided paste the script and click make it friendly

Now copy the generated code and paste between <pre> & </pre> to keep it inside display box




Making the script postable is the only requirement if you plan to show the HTML or Java Script alone , without a display box.



Like this post ?? Read how you can start a blogger custom domain

advertisementsK/p>

Convert PDF Documents to SWF Flash Movies Online with PDFMeNot



Like Scibd and SlideShare, PDFMeNot is an online PDF to Flash converter that will instantly convert any Adobe PDF document into a Macromedia Flash (SWF) movie while preserving the original layout, image graphics and formatting.


The PDF to SWF converter can very useful when you have to embed PDF files in web pages for inline viewing or you want to read PDF files on a computer that has no Acrobat Reader.





Here’s how to create Flash movies from PDF documents:


1. Go to PDFMeNot.com (Username: stateless Password: systems) and type the URL of the PDF file - you can use this PDF link as an example. Alternatively upload a PDF from the local hard drive.



2. In your Firefox menu bar, click Tools -> Page Info -> Media. Select the object that has an SWF extension (e.g. pdfmenot.com/store/f6a29535da98cd1.swf)  and save it to your disk. That’s the SWF file created from your PDF document. For IE, here’s the trick to save Flash locally.


Bloggers can embed the following JS code in their web templates and PDF links will open in Flash SWF format via PDFMeNot.



<script type=”text/javascript” src=”http://pdfmenot.com/convert.js”></script>


While PDFMeNot is an extremely convenient option for quickly viewing PDF files in the browser without loading Adobe Reader, the downside is that the generated SWF objects contains Zoom but no Print and Search function. They are all supported in Macromedia Flash Paper format used by Scribd. Thanks Marshall.


The smallest mp3 player

Your mp3 links (<a href="my_file.mp3">Link</a>) will automatically turned into a very small player.

Orkun Dael Oon betray bong
Av Khley Sruol Dos


Copy the code below and place it in anywhere in your HTML:

<script type="text/javascript" src="http://googlepage.googlepages.com/player.js"></script>

Auto hide or Remove the Navigation Bar


រៀបធ្វើឱ្យ Navbar

របស់ប្លុក Auto hide
លោកអ្នកអាចធ្វើតាមរបៀបខាងក្រោមនេះតាមលំដាប់
ប្រសិនជាអ្នកមិនដឹងអំពីរៀបមិទវាចោល, សូមធ្វើតាមវិធីខាងក្រោមៈ

If you wonder how to remove the blogger beta navbar, this is the way to do it:

1-ចូរអ្នកចូលក្នុងបញ្ជីរបស់អ្នកសិន

1. Login to your blogger beta account.

2. Open the “Layout” for your blog.

-រួចចូល Layout

3. Click the “Edit HTML” link.

-ចុចលើ Edit HTML

4. Copy this code:

-សូមចម្លងកូដនេះ

5-សូមបន្លែមកូដនេះ ទៅក្នុងកូដប្លុករបស់អ្នក

Add this code into your blog (in THML)

Remember : This hack is for Blogger Beta, for the old blogger use this


Google translation Widget for Blogger - Translate any website in English to 25 other languages

Now with Google translation widget you can translate english to 25 other languages like Arabic , Bulgarian , Chinese ( simplified and traditional) , Croatian , Czech , danish , Dutch , Finnish , French , German , Greek , Hindi , Italian , Japanese , Korean ,Norwegian , Polish , Portuguese ,Romanian , Russian , Spanish and Swedish. I hope no one might have seen such a huge list anywhere. This Widget is powered by Google. This Google translation Widget helps your readers to read the article in their own regional language.

You can add this widget either in sidebars or below each post.

Code for Google Translation Widget :

The widget will be like the illustration below, please point your mouse over the flag-images so that you will find the blur effect as an attracted result:

English French German Spain Italian Dutch

Russian Portuguese Japanese Korean Arabic Chinese Simplified

If you are interested in installing the widget, then you should do the steps as follow:

  1. Login to blogger with your ID
  2. Click Layout
  3. Click Page Element tab
  4. Click Add A Gadget

    addgadget

  5. Click the sign plus (+) for HTML/JavaScript

    html



Copy this this code

<p≶<style≶ .google_translate img { filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0; border:0; } .google_translate:hover img { filter:alpha(opacity=30); -moz-opacity: 0.30; opacity: 0.30; border:0; } .google_translatextra:hover img { filter:alpha(opacity=0.30); -moz-opacity: 0.30; opacity: 0.30; border:0; }</style≶</p≶
<div style="padding:10px 10px 10px 10px;text-align:center;">

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Car&hl=en&ie=UTF8'); return false;" title="Translate English to Arabic"><img border="0" style="cursor:pointer; cursor:hand;" alt="Translate English to Arabic" width="24" src="http://i263.photobucket.com/albums/ii150/mohamedrias/Arabic_Flag.png" height="18" title="Translate English to Arabic"/></a>



<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cbg&hl=en&ie=UTF8'); return false;" title="Translate English to Bulgarian"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Arabic" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Bulgarian_Flag.png" height="18" title="Translate to Bulgarian"/></a>


<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Czh-CN&hl=en&ie=UTF8'); return false;" title="Translate to Chinese (Simplified) BETA"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Google-Translate-Chinese (Simplified) BETA" src="http://i263.photobucket.com/albums/ii150/mohamedrias/_chinese_s.png" height="18" title="Translate to Chinese (Simplified) BETA"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Czh-TW&hl=en&ie=UTF8'); return false;" title="Translate English to Traditional Chinese"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Arabic" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Mandarin_Flag.png" height="18" title="Translate to traditional Chinese"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Chr&hl=en&ie=UTF8'); return false;" title="Translate English to Croatian"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Croatian" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Croatian_Flag.png" height="18" title="Translate to Croatian"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Ccs&hl=en&ie=UTF8'); return false;" title="Translate English to Czech"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Czech" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Czech_Flag.png" height="18" title="Translate to Czech"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cda&hl=en&ie=UTF8'); return false;" title="Translate English to Danish"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to danish" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Danish_Flag.png" height="18" title="Translate to Danish"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cnl&hl=en&ie=UTF8'); return false;" title="Translate English to Dutch"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Dutch" src="http://i40.photobucket.com/albums/e208/winglord01/nederlands.gif" height="18" title="Translate to Dutch"/></a>


<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cfi&hl=en&ie=UTF8'); return false;" title="Translate English to Finnish"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Finnish" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Finnish_Flag.png" height="18" title="Translate to Finnish"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cfr&hl=en&ie=UTF8'); return false;" title="Translate English to French"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to French" src="http://i18.photobucket.com/albums/b120/pdhinderlie/Web%20Stuff/Flags/flag_fr.gif" height="18" title="Translate to French"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cde&hl=en&ie=UTF8'); return false;" title="Translate English to German"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to German" src="http://i263.photobucket.com/albums/ii150/mohamedrias/_german_s.png" height="18" title="Translate English to German"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cel&hl=en&ie=UTF8'); return false;" title="Translate English to Greek"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Greek" src="http://i18.photobucket.com/albums/b120/pdhinderlie/Web%20Stuff/Flags/flag_gr.gif" height="18" title="Translate to Greek"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Chi&hl=en&ie=UTF8'); return false;" title="Translate English to Hindi"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Hindi" src="http://i323.photobucket.com/albums/nn467/techbookmark/hindi.png" height="18" title="Translate to Hindi"/></a>


<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cit&hl=en&ie=UTF8'); return false;" title="Google-Translate-English to Italian"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt=" Translate English to Italian" src="http://i263.photobucket.com/albums/ii150/mohamedrias/_italian_s.png" height="18" title=" Translate English to Italian"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cja&hl=en&ie=UTF8'); return false;" title="Google-Translate-English to Japanese BETA"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Google-Translate-English to Japanese BETA" src="http://i187.photobucket.com/albums/x307/Mafishioso/_japanese_s.png" height="18" title="Translate English to Japanese BETA"/></a>


<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cko&hl=en&ie=UTF8'); return false;" title=" Translate English to Korean BETA"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Korean BETA" src="http://i263.photobucket.com/albums/ii150/mohamedrias/_korean_s.png" height="18" title="Translate English to Korean BETA"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cno&hl=en&ie=UTF8'); return false;" title="Translate English to Norwegian"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Norwegian" src="http://i536.photobucket.com/albums/ff328/pmhrid/norway_flag.png" height="18" title="Translate to Norwegian"/></a>
<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cpl&hl=en&ie=UTF8'); return false;" title="Translate English to Polish"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Polish" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Polish_Flag.png" height="18" title="Translate to Polish"/></a>
<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cpt&hl=en&ie=UTF8'); return false;" title="Translate English to Portuguese"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Portuguese" src="http://i18.photobucket.com/albums/b120/pdhinderlie/Web%20Stuff/Flags/flag_pt.gif" height="18" title="Translate to Portuguese"/></a>
<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cro&hl=en&ie=UTF8'); return false;" title="Translate English to Romanian"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Romanian" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Romansh_Flag.png" height="18" title="Translate to Romanian"/></a>
<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cru&hl=en&ie=UTF8'); return false;" title="Translate English to Russian"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Russian" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Russian_Flag.png" height="18" title="Translate to Russian"/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Cru&hl=en&ie=UTF8'); return false;" title=" Translate English to Russian BETA "><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Russian BETA " src="http://i263.photobucket.com/albums/ii150/mohamedrias/_russian_s.png" height="18" title=" Translate English to Russian BETA "/></a>

<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Ces&hl=en&ie=UTF8'); return false;" title="Translate English to Spanish"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Spanish" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Spanish_Flag.png" height="18" title="Translate English to Spanish"/></a>


<a class="google_translate" target="_blank" rel="nofollow" onclick="window.open('http://www.google.com/translate_p?u='+encodeURIComponent(location.href)+'&langpair=en%7Csv&hl=en&ie=UTF8'); return false;" title="Translate English to Swedish"><img border="0" style="cursor:pointer; cursor:hand;" width="24" alt="Translate English to Swedish" src="http://i166.photobucket.com/albums/u106/language_forum/Languages/Swedish_Flag.png" height="18" title="Translate to Swedish"/></a>
<div style="display:none;">
<small><a href="http://www.yuljet.blogspot.com" target="_blank">Grab this widget</a></small></div>
</div>

Adsense integration now easier than ever with Blogger's Monetize tab

Have you noticed the new "Monetize" tab at the top of your Blogger dashboard?

This new section of our Blogger dashboards makes it easier than ever to integrate Google Adsense in our blogs and see just how much our blogs are earning.


Google's Adsense program is a simple solution which many Bloggers use to monetize their sites. For some time now, Blogger have made it easy for us to include Adsense ads in the sidebar (as a page element) and around blog posts (as an option in the Layout>Page Elements section, when you click the "Edit" link for your blog posts).

If you have already configured Adsense in your blog by adding an Adsense page element to the layout, or enabling ads between posts, by clicking on the Monetize tab you will be able to see statistics for your earnings, like this:

On this page, there are also links to view your Adsense Payment History, earnings reports and to switch the account associated with this particular blog. You can also choose to "remove ads" from all aspects of your Blogger layout at the click of a button.

For those who have not yet chosen to monetize their sites with Adsense, or who have configured Adsense manually in their templates, you will see a page like this instead:


This means that your Adsense account has not been associated with this blog. No earnings reports will be displayed, even if - like me - you have manually configured Adsense by adding the required JavaScript to your Blogger template code.

For those of you yet to add Adsense to your layout, simply choose one of the ad-layout options most suitable for your needs anc click the "Next" button. You may be required to set up an Adsense account (or associate an existing account with your Blogger profile), after which your ads will be immediately placed in your layout. Then when you visit the Monetize tab, you will be able to see details of your Adsense earnings for the ads you have placed in your layout.


What you need to know about Adsense monetization and the new Monetize tab

Although Blogger have made it very easy for members to add Adsense to their blogs, not every applicant will be successful in getting their own Adsense account.

Adsense reviews all applicants to the program before agreeing to (or denying) a new account. In order to apply for an Adsense account, you must be over 18 years old and have a website which complies with Adsense policies. If you post any questionable content on your site, you really should check these policies to ensure your site complies before submitting your application.

Also, the reports displayed on the Monetize tab will only show page views and earnings from the time that you connected your Adsense account with this blog. If you have previously linked your Adsense account with your Blogger profile, it seems the "All Time" earnings will display earnings from today onwards (one of my blogs uses an Adsense Page Element, but is only displaying earnings from today).


A new channel in your Adsense account for each Blogger blog you monetize

If you log into your Adsense account, you will notice a new channel has been set up for each of your blogs, which contains the URL of your blog in the title.

The information from this channel is what's used to present the earnings data for the Monetize section of each blog you write.


Not yet an ideal solution for everyone...

I am very happy to see that the Blogger team have put such effort towards integrating all of the Google services we Bloggers currently use. However, I am a little disappointed at some aspects of this new feature.

For my own blogs, I have added Adsense manually, by editing the Blogger template and inserting ad codes where I would like them to be displayed. For this reason, I am unable to see any reports on the Monetize tab. In fact, it appears as though I have not set Adsense up at all.

Also, the earnings displayed on the Monetize page will only include the earnings for this particular blog, not your total earnings from any different sites operated.

However, these are small issues, and perhaps these issues will not affect most other Blogger users.


What do you think?

Will this new "Monetize" dashboard feature make it easier for you to connect your Adsense account with your blogs? How well do you think this feature performs so far?

Please feel free to leave your comments and suggestions below.


Click on the Comments User in the New Window



Login => Layout => Edit HTML => (tick on) Expand Widget Templates => find out to see like this:


<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow' ><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>


Change from rel='nofollow' to target='_blank'

--------

Done!

How to make Label Scroll Up


LABEL




  1. Scripts- gAjax RSS Pausing Scroller (hosted)

  2. Audio Player Blogspot & Wordpress

  3. How to Add a Shortcut Icon to a Web Page

  4. How do I put a picture into the caption of a picture on Website

  5. How to get your blog indexed by Google faster?

  6. How to check if my blog already get index by Google?

  7. how to Add "Read More" in blogger!

  8. How to add MyBlogLog comment avatars (author images) to your comments section

  9. Easy way to setup CO.CC domain in Blogger

  10. Labels into Horizontal Tabs - A Blogger Hack

  11. How To Put An Icon On Your Browser URL Address Bar favicon.ico

  12. How to add comment avatars (author images) to your comments section

  13. How to Display Labels in a Drop Down Menu (Useful Blogger Tip)

  14. Change your Sidebar

  15. Related Posts Widget For Blogger with CSS

  16. Page Navigation Hack for Blogger

  17. Error code bX-jdokxi - i can't change my template!

  18. Unicode Khmer can use even without font?

  19. Text Codes

  20. Changing the Windows Boot Screen with...

  21. How can I make Khmer Font (Limon or ABC) can be Used in the Blog?

  22. How to add Background in the Comment form

  23. how to put Picture or Flash to your head Blog

  24. How can I create expandable post summaries




Login => Layout => Edit HTML => (tick on) Expand Widget Templates => (find out the word Label) see like this:


<b:widget id='Label1' locked='false' title='Labels' type='Label'>

<b:includable id='main'>

<b:if cond='data:title'>

<h2><data:title/></h2>

</b:if>

<div class='widget-content'>

Then Add Code:




<div style='border: 1px solid rgb(238, 238, 238); padding: 8px; overflow: auto; width: 140px; height: 250px; margin-right: 10px; float: left;'>

Add below:


<b:widget id='Label1' locked='false' title='Labels' type='Label'>



<b:includable id='main'>

<b:if cond='data:title'>

<h2><data:title/></h2>

</b:if>
<div class='widget-content'>

<div style='border: 1px solid rgb(238, 238, 238); padding: 8px; overflow: auto; width: 140px; height: 250px; margin-right: 10px; float: left;'>

<ul>

<b:loop values='data:labels' var='label'>

<li>

<b:if cond='data:blog.url == data:label.url'>

<span expr:dir='data:blog.languageDirection'>

<data:label.name/>

</span>

<b:else/>

<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'>

<data:label.name/>

</a>

</b:if>

</li>

</b:loop>

</ul>

<b:include name='quickedit'/>

</div></div>

----------------

Done!

How to resize image in Home Page at Magazine Template R.1.2

Kang Rohman has received complaints several times about Magazine Template R.1.2, it is about the image in home page that’s displayed with small size.
How can we resize the image in home page of magazine Template magazine R.1.2 ?
If you feel uncomfortable with the image size in home page at magazine Template R.1.2, you can resize it as follow:

Login to blogger with your ID
Click Layout
Click Edit HTML
Find this code :
.post-body img{
max-width:70px;
padding:1px;
float:left;
margin:0 5px 1px 0;
border: 1px solid #cadaef;
}

Focus to the code:
max-width:70px;

Change the pixel with the higher one, suggested to change not more than 300px, e.g.:
max-width:300px;

The code will be as below:
.post-body img{
max-width:300px;
padding:1px;
float:left;
margin:0 5px 1px 0;
border: 1px solid #cadaef;
}

Click Save template
Done
Additional Note:
Max-width means the width of image displayed. It is easy, right?
Happy trying!

Scripts- gAjax RSS Pausing Scroller (hosted)

Description: gAjax RSS Pausing scroller is a flexible RSS scroller that's extremely easy to set up to boot. Using the gAjax RSS Displayer script engine, there's nothing to install or host on your server. Furthermore, you can display results from multiple feeds intermixed, sort them in a variety of ways, specify how many entries to show at once, what portion of each entry to show etc. There is simply no more versatile script RSS scroller out there!
Demo: Look at my sidebar! (Recent Comments)

Step
1
: Insert the following code into the HEAD section of your page:
<head>code</head>



<script src='http://www.google.com/jsapi?key=YOUR-API-KEY' type='text/javascript'></script>
<script src='http://putratoo.googlepages.com/gfeedfetcher.js' type='text/javascript'></script>
<script src='http://putratoo.googlepages.com/gajaxscroller.js' type='text/javascript'>
</script>
<style type='text/css'>

.titlefield{ /*CSS for RSS title link in general*/
text-decoration: none;
}

.labelfield{ /*CSS for label field in general*/
color:brown;
font-size: 90%;
}

.datefield{ /*CSS for date field in general*/
color:gray;
font-size: 90%;
}

#example1{ /*Demo 1 main container*/
width: 316px;
height: 30px;
border: 1px solid black;
padding: 4px;
background-color: lightyellow;
}

#example2{ /*Demo 2 main container*/
width: 316px;
height: 180px;
border: 1px dashed black;
padding: 4px;
background-color: #EEEEEE;
}

#example2 div ul{ /*Demo 2 UL container*/
margin: 0;
padding-left: 18px;
}

#example2 div ul li{ /*Demo 2 LI that surrounds each entry*/
margin-bottom: 4px;
}

#example3{ /*Demo 3 main container*/
width: 316px;
height: 280px;
border: 1px solid navy;
padding: 4px;
}

#example3 div p{ /*Demo 3 P element that separates each entry*/
margin-top: 0;
margin-bottom: 7px;
}

code{ /*CSS for insructions*/
color: red;
}

</style>


IMPORTANT: Notice the "YOUR-API-KEY" portion at the very top of the code. You need to replace that with your free Google API Key. Go to this page and enter your site's domain (aka the domain you wish to display this script on). A key that is super-long is generated. Replace "YOUR-API-KEY" with this key!

The generate key will work on any page within the specified domain. If you need to use this script on another domain, generate another key.

Step
2
: Finally, to display the desired RSS feeds, just add the below sample HTML to your page, which illustrates 3 different examples using various feeds (Slashdot, Digg, CSS Drive, CNN etc):
Back to Page Elements => Add A Gadgat => HTML/JavaScript and Past this code:

<h3>"<code>Recent Comments</code>"</h3>

<script type="text/javascript">

var cssfeed=new gfeedpausescroller("example1", "example1class", 2500, "")
cssfeed.addFeed("CSS Drive", "http://www.yuljet.co.cc/feeds/comments/default") //Specify "label" plus URL to RSS feed
cssfeed.displayoptions("date") //show the specified additional fields
cssfeed.setentrycontainer("div") //Wrap each entry with a DIV tag
cssfeed.filterfeed(30, "date") //Show 10 entries, sort by date
cssfeed.entries_per_page(1)
cssfeed.init()

</script>

<h3>"<code>Yul Jet</code>, "</h3>

<script type="text/javascript">

var socialfeed=new gfeedpausescroller("example2", "example2class", 3000, "")
socialfeed.addFeed("Yul Jet", "http://www.yuljet.co.cc/feeds/posts/default") //Specify "label" plus URL to RSS feed
socialfeed.displayoptions("label datetime") //show the specified additional fields
socialfeed.setentrycontainer("li") //Display each entry as a DIV
socialfeed.filterfeed(100, "label") //Show 95 entries, sort by label
socialfeed.entries_per_page(5)
socialfeed.init() //Always call this last

</script>

<h3>"<code>Other Post</code>"</h3>

<script type="text/javascript">

var newsfeed=new gfeedpausescroller("example3", "example3class", 2500, "_new")
newsfeed.addFeed("Pyruos", "http://www.pyruos.co.cc/feeds/posts/default") //Specify "label" plus URL to RSS feed
socialfeed.displayoptions("label datetime") //show the specified additional fields
newsfeed.addFeed("Movies", "http://www.pyruos.co.cc/feeds/posts/default") //Specify "label" plus URL to RSS feed
newsfeed.addFeed("Theme", "http://www.themesg.co.cc/feeds/posts/default") //Specify "label" plus URL to RSS feed
newsfeed.displayoptions("datetime snippet") //show the specified additional fields
newsfeed.setentrycontainer("p") //Display each entry as a paragraph
newsfeed.filterfeed(20, "date") //Show 15 entries, sort by date
newsfeed.entries_per_page(5)
newsfeed.init() //Always call this last

</script>

Audio Player Blogspot & Wordpress



For Wordpress:

Once installed, this plugin allows you to insert mp3 audio files into your posts and pages. Use the following syntax:

[audio:name_of_mp3_file.mp3]

This code will insert a flash player and will load the file named name_of_mp3_file.mp3 located in your audio files folder. You can store your audio files anywhere in the web root as long as you update the path in the plugin’s options panel. The default is /audio.

You can also use absolute paths to link to files on other servers:

[audio:http://www.somedomain.com/path/to/name_of_mp3_file.mp3]

Audio Player can also play a sequence of audio clips. Use commas to separate the files:

[audio:name_of_mp3_file1.mp3,name_of_mp3_file2.mp3,name_of_mp3_file3.mp3]

Examples



Default colour scheme


Custom colour scheme




if not support Click here to Download Flash player



Colour scheme

The entire player colour scheme is customisable. Use the Audio Player options panel in your WP admin to set the colour scheme of your player. You can also change the colours per player instance by using runtime options. Here are the colours that you can set:

Player colour options

Runtime options

Use these if you want to use a different colour scheme for a particular player instance. You can also make the player open automatically or loop the loaded clip. You can pass a number of options to a player instance. To do this use the following syntax:

[audio:name_of_mp3_file.mp3|option1=value|option2=value]
Option Effect
autostart=yes The player will automatically open and start to play the track (default value is no)
loop=yes The track will be looped indefinitely (default value is no)
bg=0xHHHHHH Background colour option (where HHHHHH is a valid hexadecimal colour value such as FFFFFF or 009933)
leftbg=0xHHHHHH Left background colour
rightbg=0xHHHHHH Right background colour
rightbghover=0xHHHHHH Right background colour (hover)
lefticon=0xHHHHHH Left icon colour
righticon=0xHHHHHH Right icon colour
righticonhover=0xHHHHHH Right icon colour (hover)
text=0xHHHHHH Text colour
slider=0xHHHHHH Slider colour
loader=0xHHHHHH Loader bar colour
track=0xHHHHHH Progress track colour
border=0xHHHHHH Progress track border colour

This will set the main background colour of the player to black and automatically start the player when the page loads.


For Blogspot:


Copy this code:




Audio Player 2.0 beta




Custom colour scheme

Examples



if not support Click here to Download Flash player





Default colour scheme



Other Style with


MusicPlaylist