Saturday, January 17, 2009

how to add dzone voting button to all blogger posts autometically

2 comments

If you want to add dzone votin button to your blogspot posts than you need to edit the html code of your blog template and add this code

Go to edit html section of your template and check the check box for expend widget templates and search for this line of code

<p><data:post.body/></p>
Now copy below mentioned code just above this line
<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>var
dzone_url = '<data:post.url/>'</script>
<script type='text/javascript'>var
dzone_title = '<data:post.title/>'</script>
<script type='text/javascript'>var
dzone_style = 1</script>
<script language='javascript'
src
='http://widgets.dzone.com/widgets/zoneit.js'/>
</div>
that's all have to do , save the template and check whether it works or not


Continue Reading...

Friday, January 16, 2009

Hide blogger navigation bar from your blogspot blog

1 comments

If you want to hide navigation bar of your blogspot blog than you need to write this code in the html section of ur blog


Go to Layout and click on edit html and write below mentioned code in the css section of html code

#navbar {
height: 0px;
visibility: hidden;
display: none;
}


This will hide the navbar from ur blog
Enjoy


Continue Reading...

Thursday, January 15, 2009

Adding star ratings to blogspot custom templates in new blogger beta

3 comments

Recently blogger have added star ratings feature to posts , to enable this go to Layout section and click on edit link on Blog post, than check the check box against Show Star Ratings, for this u might need to login in blogger draft

If u r using template provided with blogger , than doing this will work , but if u r using any custom or third party template than u need to add some code for this to work
Go to edit HTML and check the expend widget template
Search for this line of code:
<span class='star-ratings'
><b:if cond='data:top.showStars'><div 
expr:g:background-color='data:backgroundColor'
expr:g:text-color='data:textColor' 
expr:g:url='data:post.absoluteUrl'
g:height='42' g:type='RatingPanel' 
g:width='180'/></b:if></span>         
Now search for following code:
<b:include name='feedLinks'/> 
Copy the following code and paste after the line mentioned above:
<b:if cond='data:top.showStars'>     
<script src='http://www.google.com/jsapi'  
type='text/javascript'/> 
<script type='text/javascript'> 
google.load(&quot;annotations&quot;, 
&quot;1&quot;); 
function initialize() 
{google.annotations.setApplicationId
(<data:top.blogspotReviews/>);
google.annotations.createAll(); 
google.annotations.fetch(); 
} 
google.setOnLoadCallback(initialize);     
</script>  </b:if>

Now u'll be able to star ratings in ur posts Njoy

For more info read this blog


Continue Reading...

Adding Page navigation widget in your blogspot blog for a smooth and good looking page navigation menu

10 comments

To add this kind of navigation to ur blog simple edit ur blog template according to this



1 : Log in to your blogger account and navigate to Layout section. Now go to the edit HTML .


2 : search this line

]]></b:skin>
and add this CSS code above that line.

.showpageArea {padding: 0 2px;margin-bottom:10px;margin-top:10px;
}

.showpageArea a {border: 1px solid #505050;
color: #000000;font-weight:normal;
padding: 3px 6px !important;
padding: 1px 4px ;margin:0px 4px;
text-decoration: none;
}
.showpageArea a:hover {
font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;
}

.showpageNum a {border: 1px solid #505050;
color: #000000;font-weight:normal;
padding: 3px 6px !important;
padding: 1px 4px ;margin:0px 4px;
text-decoration: none;

}
.showpageNum a:hover {
font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;

}
.showpagePoint {font-size:11px;
padding: 2px 4px 2px 4px;
margin: 2px;
font-weight: bold;
border: 1px solid #333;
color: #fff;
background-color: #000000;


}

.showpage a:hover {font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;

}
.showpageNum a:link,.showpage a:link {
font-size:11px;
padding: 2px 4px 2px 4px;
margin: 2px;
text-decoration: none;
border: 1px solid #0066cc;
color: #0066cc;
background-color: #FFFFFF;}

.showpageNum a:hover {font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;
}

3 : search for this code or related in your template ( no need to expand widgets )
<b:section class='main' id='main' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/>
</b:section>

Now Add This script just below the </b:section> .

&lt;script type=&quot;text/javascript&quot;&gt;

function showpageCount(json) {
var thisUrl = location.href;
var htmlMap = new Array();
var isFirstPage = thisUrl.substring(thisUrl.length-14,thisUrl.length)==&quot;.blogspot.com/&quot;;
var isLablePage = thisUrl.indexOf(&quot;/search/label/&quot;)!=-1;
var isPage = thisUrl.indexOf(&quot;/search?updated&quot;)!=-1;
var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf(&quot;/search/label/&quot;)+14,thisUrl.length) : &quot;&quot;;
thisLable = thisLable.indexOf(&quot;?&quot;)!=-1 ? thisLable.substr(0,thisLable.indexOf(&quot;?&quot;)) : thisLable;
var thisNum = 1;
var postNum=1;
var itemCount = 0;
var fFlag = 0;
var eFlag = 0;
var html= &#39;&#39;;
var upPageHtml =&#39;&#39;;
var downPageHtml =&#39;&#39;;


var pageCount=5;
var displayPageNum=3;
var firstPageWord = &#39;First&#39;;
var endPageWord = &#39;Last&#39;;
var upPageWord =&#39;Previous&#39;;
var downPageWord =&#39;Next&#39;;



var labelHtml = &#39;&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;/search/label/&#39;+thisLable+&#39;?&amp;max-results=&#39;+pageCount+&#39;&quot;&gt;&#39;;

for(var i=0, post; post = json.feed.entry[i]; i++) {
var timestamp = post.published.$t.substr(0,10);
var title = post.title.$t;
if(isLablePage){
if(title!=&#39;&#39;){
if(post.category){
for(var c=0, post_category; post_category = post.category[c]; c++) {
if(encodeURIComponent(post_category.term)==thisLable){
if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
if(thisUrl.indexOf(timestamp)!=-1 ){
thisNum = postNum;
}

postNum++;
htmlMap[htmlMap.length] = &#39;/search/label/&#39;+thisLable+&#39;?updated-max=&#39;+timestamp+&#39;T00%3A00%3A00%2B08%3A00&amp;max-results=&#39;+pageCount;
}
}
}
}//end if(post.category){

itemCount++;
}

}else{
if(title!=&#39;&#39;){
if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
if(thisUrl.indexOf(timestamp)!=-1 ){
thisNum = postNum;
}

if(title!=&#39;&#39;) postNum++;
htmlMap[htmlMap.length] = &#39;/search?updated-max=&#39;+timestamp+&#39;T00%3A00%3A00%2B08%3A00&amp;max-results=&#39;+pageCount;
}
}
itemCount++;
}
}

for(var p =0;p&lt; htmlMap.length;p++){
if(p&gt;=(thisNum-displayPageNum-1) &amp;&amp; p&lt;(thisNum+displayPageNum)){
if(fFlag ==0 &amp;&amp; p == thisNum-2){
if(thisNum==2){
if(isLablePage){
upPageHtml = labelHtml + upPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;
}else{
upPageHtml = &#39;&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;/&quot;&gt;&#39;+ upPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;
}
}else{
upPageHtml = &#39;&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;&#39;+htmlMap[p]+&#39;&quot;&gt;&#39;+ upPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;
}

fFlag++;
}

if(p==(thisNum-1)){
html += &#39;&amp;nbsp;&lt;span class=&quot;showpagePoint&quot;&gt;&lt;u&gt;&#39;+thisNum+&#39;&lt;/u&gt;&lt;/span&gt;&#39;;
}else{
if(p==0){
if(isLablePage){
html = labelHtml+&#39;1&lt;/a&gt;&lt;/span&gt;&#39;;
}else{
html += &#39;&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;/&quot;&gt;1&lt;/a&gt;&lt;/span&gt;&#39;;
}
}else{
html += &#39;&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;&#39;+htmlMap[p]+&#39;&quot;&gt;&#39;+ (p+1) +&#39; &lt;/a&gt;&lt;/span&gt;&#39;;
}
}

if(eFlag ==0 &amp;&amp; p == thisNum){
downPageHtml = &#39;&lt;span class=&quot;showpage&quot;&gt; &lt;a href=&quot;&#39;+htmlMap[p]+&#39;&quot;&gt;&#39;+ downPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;
eFlag++;
}
}//end if(p&gt;=(thisNum-displayPageNum-1) &amp;&amp; p&lt;(thisNum+displayPageNum)){
}//end for(var p =0;p&lt; htmlMap.length;p++){

if(thisNum&gt;1){
if(!isLablePage){
html = &#39;&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;/&quot;&gt;&#39;+ firstPageWord +&#39; &lt;/a&gt;&lt;/span&gt;&#39;+upPageHtml+&#39; &#39;+html +&#39; &#39;;
}else{
html = &#39;&#39;+labelHtml + firstPageWord +&#39; &lt;/a&gt;&lt;/span&gt;&#39;+upPageHtml+&#39; &#39;+html +&#39; &#39;;
}
}

html = &#39;&lt;div class=&quot;showpageArea&quot;&gt;&lt;span style=&quot;font-size:11px;padding: 2px 4px 2px 4px;margin: 2px 2px 2px 2px;color: #000000;border: 1px solid #333; background-color: #FFFFFF;&quot; class=&quot;showpage&quot;&gt;Page &#39;+thisNum+&#39; of &#39;+(postNum-1)+&#39;: &lt;/span&gt;&#39;+html;

if(thisNum&lt;(postNum-1)){
html += downPageHtml;
html += &#39;&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;&#39;+htmlMap[htmlMap.length-1]+&#39;&quot;&gt; &#39;+endPageWord+&#39;&lt;/a&gt;&lt;/span&gt;&#39;;
}

if(postNum==1) postNum++;
html += &#39;&lt;/div&gt;&#39;;

if(isPage || isFirstPage || isLablePage){
var pageArea = document.getElementsByName(&quot;pageArea&quot;);
var blogPager = document.getElementById(&quot;blog-pager&quot;);

if(postNum &lt;= 2){
html =&#39;&#39;;
}

for(var p =0;p&lt; pageArea.length;p++){
pageArea[p].innerHTML = html;
}

if(pageArea&amp;&amp;pageArea.length&gt;0){
html =&#39;&#39;;
}

if(blogPager){
blogPager.innerHTML = html;
}
}

}
&lt;/script&gt;

&lt;script src=&quot;/feeds/posts/summary?alt=json-in-script&amp;callback=showpageCount&amp;max-results=99999&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;


<div style='text-align:right;font-size:10px;color:000000;margin-top:15px;display:none;'> <a href='http://rias-techno-wizard.blogspot.com/2008/07/page-navigation-hack-for-blogger.html'>Grab this Widget ~ Blogger Accessories</a></div>



More info here


Continue Reading...

Creating sitemaps for blogger blogspot blog for submitting to search engines

2 comments

To create a sitemap for ur blog , Go to Webmaster Tools link and the bottom of ur blogspot dashbord, click on the link of your blog , than go to sitemap link at the left pane
You can create either rss.xml or atom.xml format sitemaps
It doesn't matter which one you use, they should both be accepted as valid sitemap, for submitting sitemap u may need to varify your ownership by putting a varification link provided by blogger in ur blog

  • By default, sitemap only includes the latest 25 posts. So not all your blog posts might get indexed
  • If you use FeedBurner and enabled feed redirection on your blog, this sitemap does not work as it is redirected to your FeedBurner feed
To Disable the redirect for your sitemap

atom.xml?redirect=false

By default, the sitemap only shows the latest 25 posts. Using a parameter called max-results, you can specify how many posts need to be included in the sitemap.

atom.xml?max-results=100

Finally, add a parameter to define the start point.

atom.xml?start-index=1

to put it all together

Let's put it all together
if your blog is having 200 posts and feed redirection to FeedBurner enabled. than your sitemap will look like this

http://blogname.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=100
http://blogname.blogspot.com/atom.xml?redirect=false&start-index=101&max-results=100


Hope this helps


Continue Reading...

Monday, January 12, 2009

amiT jaiN

1 comments

Hi all , i am amiT jaiN , software developer by profession working in Delhi(NCR) region , naitive of Agra , the city of Taj mahal , I work on Microsoft .NET platfrom , using C# .NET, ASP.NET, SQL Server, AJAX ,JavaScript, etc to develop web based applications and windows based applications i m fond of reading and collection shayaries , gazals and shers , sometime i write my own too , hope u enjoy visitng my collection if u wanna contact me then leave a comment here or drop ur mail id


Continue Reading...

Thursday, September 25, 2008

Detect Yahoo messenger invisible friends, Yahoo messenger invisible status checker

34 comments

If you want to find whether Your buddy is online in invisible mode on yahoo or not ,than just go to any of site mentioned below , put yahoo ID in search box and click on search to find the invisible status of your friend


http://invisible-scanner.com/

http://www.invisible.ir

http://ydetector.com/

http://www.imvisible.info/

http://www.yahoo-status.com/

http://www.invisiable.net/

http://www.find-them.net/

http://www.yahoostatus.ro/LightNEasy.php?page=Check%20Status

http://www.buzzu.info

http://www.spy-yahoo.com

http://www.statusdetect.com

http://www.persiangap.com

http://hide.ir

http://detectinvisible.com

http://www.yahoostatus.ro

http://www.inviz.ro

http://www.yahoostatus.org

http://ystatus.com


Have fun





Continue Reading...

Thursday, August 14, 2008

Creating bootable Windows XP/2003 Disc with Nero Burning 6

2 comments

Create a folder called OS on your hard drive (C: is used in this example).
In this folder create two sub-folder called BOOT, and ROOT.
Copy the entire Windows 2000/XP/2003 CD (or extract the ISO) into folder ROOT.
BOOT Files
1.) Download boot file from here .
2.) Extract the BootSector file (boot.ima) from bootfiles-from-tacktech-website.zip
into the folder C:\OS\BOOT
Start Nero Burning ROM.
Select File > New... from the menu.








1.) Select CD-ROM (Boot).
2.) Select Image file from Source of boot image data.
3.) Check Enable expert settings (for advanced users only!).
4.) Set Kind of emulation: to No Emulation.
5.) Set Load segment of sectors (hex!): to 0000.
6.) Set Number of loaded sectors: to 4.
7.) Set Platform identifier: to Intel x86 compatible.
8.) Press the Browse... button.










Locate the BootSector file (boot.ima) in the folder C:\OS\BOOT.
Click the Open button.













-Click on the ISO tab.-
-Set File name length to Max. of 31 chars (ISO Level 2).
- Set Format to Mode 1.
- Set Character Set to ISO 9660 (standard ISO CD-ROM).
- Check the Joliet check box.
- Check all Relax ISO Restrictions.
- Check Allow more than 64 characters for Joliet names.











Click on the Label tab.
Remove the check from Also use the ISO 9660 text for Joliet.
Enter the Volume Label into the ISO 9660 and Joliet text boxes.
Click the More fields button.











Enter in the Volume Label into the System Identifier, Volume Set, Publisher,Data preparer, Application text boxes under ISO 9660 and Joliet.
Click the OK button.









Click the Burn tab.
- Check Write.
- Check Finalize CD (No further writing possible!).
- Set Write Method to Disc-at-once. (We have had Track-At-Once work as well.)
- Click the New button.











- Locate the folder C:\OS\ROOT.
- Select everything in the folder and drag it to the ISO compilation panel.
Note: Some files are not show in the following image.
- Click the Write CD Dialog button.









Click the Boot tab.
- Verify the settings. Correct if needed.
- Click the Burn button.









Wait for Disc creation to finish.














Continue Reading...
 

Amit jain online by amiT jaiN -Internet tips and tricks Orkut tricks , blogger hacks n tricks , windows tricks, and lots of other tips and hacks