Saturday 21 May 2011

How To Add Different Meta Tags to Each posts Blogger

To Add Different Meta Tags as Description and Meta Keywords to Different/Each Blogger Post Pages/Static pages/Archive Pages/Label Pages


META Description and Meta Keywords Tags for different post pages of blogger or for any websites, is a good habit to add it. In the Recent days meta keywords are not considered by major search engines like Google, Yahoo, MSN, AOL and many more. But we have noticed into Yahoo search engine some of my post pages are in the top result for it's keywords but the chances are still very less to considered different meta keywords into major search engines. But by adding meta keywords into your blogger posts, there is no any negative effect so I recommended that use meta keywords in blogger. Now we talk on the Meta Descriptions. Different Meta Description is very important for different post pages of blogger because meta descriptions can increase the click through rate (CTR) in the SERPs result to redirect to your websites because the well written meta description to the corresponding post, will show below your post title in the search result so visitor's clicks possibility will be higher. An example you can see below of my one post;

As you can see in the above preview, I am sure my blog post is on the first position of the front page of Google search among 17.4 Billions of traffic by its Meta Description. If you want to check my current post meta description and meta keywords then you can check by clicking on Meta Tag Analyzer. Just paste my current post url in the meta tag analyzer and click on Process URL then you will see my meta description and meta keywords and also you can check my any existing other posts and check , are they have different meta tags or not. Meta Description tells to the major search engine that what the page is all about and search engines can easily find your blog to the corresponding topic by it's meta description and if you don't add meta description to your blogger posts then mostly search engines generate automatically meta description by any phrases of your post. But if you used duplicate meta description for your every blogger post then it can be decrease your search engine ranking because of the duplication of your meta descriptions and search engines feels that your all post have the same topic. So I highly recommended that to use different meta description to your every posts. In wordpress blog you can write your meta description and meta keywords at the time of writing your post in post editor but in blogger you have to add some peace of code to your HTML code of blogger template.

If you have already installed any meta description and meta keywords to your HTML code of your blogger template then copy it to notepad and delete it from your HTML code of your blogger template. Don't worry about that we will cover different meta description and meta keywords. Let's see what will we cover in this post;

How to Add different meta descriptions and different meta keywords for each blogger posts.
How to Add different meta description and different meta keywords for each static pages of blogger.
How to Add different meta description and different meta keywords for each labels or archive pages of blogger.

Below is the CODE 1.1 just you have to paste into your HTML blogger template which will be the solution of all your problems as for your different posts, different static pages, different archive pages, different label pages of blogger and of-course for your home page and also I made it for the bloggers who have lot of posts as 200 or 300 or more than that posts basically some webmasters have given codes for different blogger posts by individually making meta description and meta keywords but if you have lot of posts then to make meta tags by individual it can be very lazy work to make different meta tags for each posts pages of blogger. But in the below code if you do write meta tags for any of your post into your HTML blogger template then it will be as you made but if you don't write any meta tags for a bunch of your posts ( let us 150 posts pages) then still these posts pages will contains the different meta description and meta keywords. So no matter you have lot of posts or you are just a new blogger. So know,

How to Add Different Meta Tags as Descriptions and Keywords in Different Posts Pages in Blogger


<!-- Meta Tags SEO Pack by http://www.bloggertipsseotricks.com for Bloggers -->
 <b:if cond='data:blog.pageType == &quot;item&quot;'>
Paste CODE 1.2 HERE-SEE BELLOW POST
<b:else/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<meta content='YOUR_HOMEPAGE_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_HOMEPAGE_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<meta expr:content='data:blog.pageName + data:blog.title + data:blog.pageName' name='description'/>
<meta expr:content='data:blog.pageName + data:blog.title + data:blog.pageName' name='keywords'/>
<b:else/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='description'/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='keywords'/>

</b:if>
</b:if>
</b:if>

CODE 1.1


Now just replace YOUR_HOMEPAGE_DESCRIPTION_HERE with your description of your home page of the blog and YOUR_HOMEPAGE_KEYWORDS_HERE replace with you keywords of your home page of your blog now we will talk about the CODE 1.2, basically this code is corresponding to your posts pages so I have decided that I will construct it outside, for better understanding and then paste it into CODE 1.1 that's it! Suppose you have lot of posts and you want to add different meta descriptions and different meta keywords to your two posts only and still the rest of your posts also have different meta descriptions and meta keywords. So if you have lots of posts in your blogger blogs then you can make a strategy to add individually meta description and meta keywords to your different posts by adding meta tags to your some no. of posts every day. It is depend upon you. We are giving some example by adding meta tags to your two posts and rest of posts also will have different tags automatically.


<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/10/search-engine-optimization-tips-blogger.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/11/submit-site-search-engines-submission.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>

<meta expr:content='data:blog.pageTitle + data:blog.title' name='description'/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='keywords'/>


</b:if>
</b:if>

CODE 1.2


OR
Now suppose you want add individually meta tags to your third post then CODE 1.2 will be,

<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/10/search-engine-optimization-tips-blogger.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/11/submit-site-search-engines-submission.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/11/swap-blogger-title-post-static-pages.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='description'/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='keywords'/>

</b:if>
</b:if>
</b:if>

CODE 1.2

So now similarly you can add individually different meta descriptions and keywords for your fourth, fifth, .. posts. So for adding for your fourth post look at the green color code in CODE 1.2 and take a difference form both CODE 1.2 shown above. how we add the third one and similarly add your fourth and fifth and so on.Make sure change the url which is in pink color with your post url.

Now copy CODE 1.2 and paste it into CODE 1.1 and then copy CODE 1.1.

just go to Blogger Dashboard --> Design --> Edit HTML  Expand Widget Templates
and find the code using [ctrl+F] <b:include data='blog' name='all-head-content'/> and below that code paste your CODE 1.1 and save Template.

You done!

What Is Swap post title in blogger.





By blog title or change post title with blog title and swap title for static pages of blogger for better Search Engine Optimization SEO.


Firstly I want to tell you about the default blogger titles for home page and for post pages.


Now suppose your blog title is " search engine optimization " and you created a post which title is " how to swap post title in blogger " Now if you are in your home page then your title for that page will be " search engine optimization " which will appear in the top of the browsers and in the search engines as well. Now if you are in your post which did you created as I mentioned above then it will be " search engine optimization: how to swap post title in blogger ". So you can see that in your post pages your blog title is first and then your post title so major search engine will give the priority to your blog title first rather than your post title. so it is a good idea for swapping your titles so after this blogger hack your post title will be " how to swap post title in blogger: search engine optimization " so search engine will taken priority to your post title rather than your blog title so it is good for your blogger seo. You can check my title of this post at the top of browser but in my post title there will not be blog title included why did I? I will tell you later of this post.


Now I am writing this post for how to change blogger post title instead of blog title for every page in blogger for better search engine optimization SEO. I am considering both methods here.

1. Swap blogger post title with blog home page title for every page of your blogger blog.
2. change blogger blog title with post title for every page of your blogger blog.

change blogger blog title with post title for every page of your blogger blog.



as you can see in the above preview we categories in up to 3 numbers. The 1. and 2. is based on my first method i.e., " Swap blogger post title with blog home page title for every page of your blogger blog. " here is the swapping of post title and blog title while in the 3. is based on my second method i.e., " change blogger blog title with post title for every page of your blogger blog. " here is not swapping although here I will construct the title which is totally on our post title.


1.[First Method] Now we are creating our first method i.e., how to swap post title with blog title in blogger.

 [Don't forget to backup your template] Check box in "  Expand Widget Templates " and find the code (using ctrl+F) <title><data:blog.title/></title> just replace that code with the below one ::


<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> |<data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title> </b:if>

Now you have been successfully swap your post title with blog title in blogger. Basically your title for every page should be at most 65 character. If you exceed this limit then it will be overloaded as you can see in the figure 1.1 in 2. number and also it will look like as spoil so the chances for visitor's clicks will be decreased so in that factor if you are swapping your title with post and blog title then the chances for overloading will be higher because your blog title will be taken some character and the rest for your post title so you can remove your blog title for every post pages and you can create your full 65 character for your post pages as your targeted keywords as well. Recently blogger launch it's static pages so I am including the static pages for swapping title in the below code. Here I am giving the codes which are the multiple solution for you.

2.[second Method] let's see what you will get in My Second Method codes :

1. 
How to change post title in Blogger.

[ No swapping for 65 character criteria ]
2. 
How to swap post title for static pages in blogger.

[ Since static page title is too short ]
3. 
How to optimize post title for better search engine optimization SEO.

[ include your targeted keywords ]

The following code will be cover all the above solution just copy the below code instead of code1.1 and paste as you did before.


<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType == "static_page"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
</b:if>


The above code is nothing but the game of if-else conditions which we have applied several times during our boring semesters in C or C++ programming [ just kidding !]. Now if you have any doubt or could not be understand what does these code means then feel free to ask me as comment here. You done !




SEO for Blog Beginners | SEO for Blogger Blogs



SEO for blogs/blogger and SEO for websites both are different and social elements endorsement into the blogging technology and mostly the blogs are not placed by buying link into any other sites while the websites are more about buying links and also search engines likes the natural links not buying links. SEO for blogs is much better than SEO for websites because by the blogs users find latest and updated information so thats why if you search any query then you could see that most of the blogs will come on to the top pages and search engines gives priority to blogs and search engines index new pages in blogs faster than websites so if you are a blogger/begginer then you should read SEO for begginers as the following.

How To Remove My Blogger Navigation bar



How To Remove My Blogger Navigation bar

That’s the thing which everyone want to remove from his blog. Now it’s time to do it and i will help you.
But first of all i want to tell you what exactly is the blogger navbar. It gives a few options:
-to search in the blog
-to go to random chosen blog
-to mark the blog as spam
If you don’t want to have this navbar on your blog anymore just login in your blogger account, then to Layout, then to Edit HTML and after that you should put this code somewhere in before the end of <HEAD> tag:

#navbar-iframe {
display: none !important;
}


If You Like this Post , The please post comments . 

How to Promote MY Blog Website and Increase Visitors




Blogging is an enjoyable habit especially for those who love writing and expressing themselves to others. Many people even make a living out of it. However, gaining profits in writing blogs is not an easy task especially if you are just starting your blogging career. Other than writing relevant content, driving traffic to your website is also essential and it is not an easy task. It takes time and persistence to build online history and gain consistent traffic. No traffic, no money.

To increase traffic to your blog, you have to be effective in your website promotion activities. This may include your blog appearance, SEO, social media promotions and email marketing.

See below:

BLOG APPEARANCE

1. Blogging Platform: There are several good and free blogging platforms available online. Most famous platforms are WordPress, Joomla, Blogger and Drupal. WordPress is the most preferred platform by many bloggers and it is also originally designed for blogging. But if you want to put some dynamic functionality like social networking and ecommerce features, you may consider using Joomla and Drupal.On the other hand, it is also possible if you want to create your own blog site from raw. Hence, it will take you more time unlike setting up a site using WordPress, Joomla or Drupal. Also, in using either one of these three options, several modules and plugins are already available for your convenience plus worldwide support communities that are willing to help you out with your platform issues.

2.Color Theme: Your choice of colors is very important for your blog appearance. Through colors, you can trigger different emotions of your readers. Most blogs tend to use light colors for their backgrounds, and dark colors for the texts, (such as White & Black) this makes the content more readable for general users.

3.Navigational Layout: Make your layout navigational. Organize your links and blocks well. Make your recent posts and most famous articles are accessible to your readers. Study and experiment well for your ad positions. Also, putting them in the right places can make your number of click through higher.

SEO (SEARCH ENGINE OPTIMIZATION)

1. Relevant Content for Your Focused Niche: When we say relevant content, it means content that is helpful to readers.The web is continuously being updated every day, where users are continuously looking for good content that relates to them, aim to publish new content on a daily, or weekly biases that will link to your audience.

2. Link Building: The number of back links is essential if you want higher page ranks. Like voting system, search engines will determine your website relevance with the number of link presence you have on the web.. These links can be achieved in various ways, Submitting to bookmarks is an effective link building activity, or by writing guest articles, or even networking on social media websites.

3.Public Relations: Public relations like press release and article submissions can also help you promote your site, increase back links and expose more your website.

4.Ping: Submitting to ping sites like Ping-O-Matic everytime you made changes in your site can trigger the search engines to visit your website and index your new pages.

SOCIAL MEDIA PROMOTIONS

1. Twitter: Recently, Google started indexing twitter pages. Therefore, whatever you tweet in connection to your website will affect your online presence. Be creative with your tweets, add your keywords and link them to your website. However, re-tweet other helpful posts also to gain more followers.

2. Facebook: Facebook is now the largest social networking site on the web. Everyday billions of users are interacting on this site, which is an enough reason to invest time and promote your websites on Facebook.
Other Online Community and Blogging Sites: Aside from Twitter and Facebook, investing time to other blogging sites and online communities like forums and other social networking sites can gain more exposures to your websites. Prevent spamming, post relevant comments that would help others. With this, you are not only promoting your blog, but you are also building relationships to your peer bloggers.

3. Commenting on other blogs: Create a list of blogs that you would read regularly, and which relate to your business. Aim to leave useful comments on articles that are published on these blog, be creative with your comments, by writing comments that would provide extra value to the post and readers.

4. Forums: A good way of building your presence and getting users to your blog, is by using forums. Register with forums within your niche, and answer few questions that the users ask, do this regularly, over time you would build your brand awareness and start to drive traffic to your site. When answering questions, be as helpful as you can, and provide answers that would be effective and helpful to all reading that question.

EMAIL MARKETING

1. Pitch Page for Mailing List: Sending emails to people who do not give you any permission to do so is loud and clear spamming. Do not do this. Create a pitch page or pitch block in your website where your readers can submit their email address to subscribe to your newsletters. You can get embed codes for this by using tools like Aweber or FeedBurner.

2. Good Layout and Content: Sending an attractive and corporate looking e-newsletter can prevent your recipients to hit the “spam” button. Be creative with your layout and give them good content. Put links directing to your website. Also, offering some games, rewards or other promotions can be a good call to action to your readers to visit your blog.

GUEST BLOGGING

Last but not the least also, have a presence as a guest blogger on various authority and related sites of your industry. As guest blogging is more than writing a blog post for some other blog, it has got many benefits, which can improve your image as a blogger and also help you promote your own blog by reaching out to communities established by these blogs.

Best is to write guest posts for other blogs and also invite and publish guest posts on your own blog. This gives maximum exposure to your blog and helps you reach out multifold on the web by opening doors for other SEO and social media benefits attached to guest blogging. Hence, this can be termed as a win-win situation where the blogger and the blog both benefit in various ways.

There are so many things that you may do to gain maximum exposure for your blog. Also, give time to research for useful tools to automate your blog sharing and make your promotion easier. Pursue the marketing and outreach of your blog keeping abreast with new ideas and methods on the web as internet marketing keeps evolving and every time you come across a new platform consider how you can portray your business.






How to increase Visitors to my blog website



Posting the contents or articles in the blogs is most often for the online writers or bloggers. Creating their own blogs or own websites and try to get more traffic to them is a big task to most of the bloggers. Most of the people will fail to get traffic because of their content. Writing stunning or interesting content is not an easy task.


Impressive Content:

Only articles or contents which are impressive or unique will divert the traffic to the websites or blogs. People usually like to read something which is interesting, new and unique and can create curiosity in their minds. Such type of content has to be created by writers and it requires a lot of research about the topic whatever they are writing.


Maintain Quality in Writing:

Quality writing is not an easy job for bloggers. Maintaining the quality throughout the blog for content can be possible only to very few writers. Most of the content writers will choose topics and write but writing the content with useful, pointed, without boring and not much dragged with same expression etc will come under quality content. So, writing the quality content also will generate huge and quality traffic to the blogs.


Here are some useful points for writers to get traffic for their content:

Be specific on the topic which ever you choose to write. Choose the topic which is useful to all categories of readers.
Try to get more and more information from all possible sources (like from internet, from books or from any persons who are experienced on particular topic) about the topic.
Arrange the content in point wise with your own, simple, expressive and clear explanation and should be understandable to all readers.
Try to read the information from the articles or contents which were already posted and got the good comments or became popular as references, so that you can improve the writing skills.
Do not lose the hope if you are not successful in initial writings, as you try to improve yourself in writing and continuous researching on the content writing will get success in this profession.
Thinking in a wide scope is very much important for this writing profession. There is no end to this creativity. As you develop your creative ideology and in writing there is no boundary to visitors for your contents.
Keeping ourselves in a good mood is very important to show your capabilities in writing. Sometimes emotional disturbances too can become a barrier in your success path.
Concentration, clear objective, creativity, thinking power, command over language, patience, easily understandable and adjustable mindset, learning skills and easy expressive way are the important skill set for a person to become a Good Writer and can easily generate traffic to his/her blogs.


How to get visitor quickly to my blog website





Getting traffic to web site is most important thing to show your online presence. Traffic the main key thing for online business success. Getting traffic towards a website is the most important thing for a web master. Many of the web masters pay a lot of bugs to search engines in the form of Adwords and buying the ads place in the web sites having high traffic. Here are some of the best ways to drive the traffic for free.

1. Optimize your site Search Engine Friendly : As search engines are the main source to drive traffic for free. If you want to get this free traffic you need to invest some of your time in order to make your site search engine friendly. You need to develop the content having the the targeted keywords and make sure they are interlinked to targeted pages.

2. Update content frequently : This is one of the major step to drive organic traffic. As per SEO terms content is the king. Search engines love the sites that are being updated frequently so update the site with rich content. Not only the search engines if the people love the content in your site they will visit your site daily to know what is the new thing in your site so updating the content is one the most important.

3. Bookmark the pages : You need to take the more advantage of book marking sites as these site are frequently updated and more SEO friendly so when ever you bookmark a link in these sites your link will be crawled by the search engines and helps to index you link when ever a user search for a particular keyword which is related to your niche. So bookmark all the link of your web site in all the book marking sites such as Digg, stumbleupon, Mixx, etc…

4. Getting link from other sites which are in your niche : The most important thing to rank high in search engines to get a link from the sites that are having high value in your niche so make sure that you get a link from those sites. Some of the best ways to get link from those sites is by doing guest posts and giving the valuable comments for the posts in those sites. This helps in providing a back link as well as visitors comes to your web site based on you valuable comment.

5. Make use off all the free chances that are available : Free promotion is the best way to brand your self in the industry. There are lot of things available to make your brand popular some of them are Directory submission ,Article submission, Classified submission, Press releases etc.,.

6. Create a free product’s or offer free service : As we know that every human links the word free they first look get attracted by this word so make use of this all the thing you need to do is create a free product and offer them and say the befits of using your product.

7. Offline promotion : We always forget offline promotion  but it helps driving the traffic towards the website. Though many of the people spend a lot of time online than offline but still life hasn’t moved completely on web. Some of the best way of offline promotion is make sure you include your company URL in business card and souvenirs. Stick your company logo on the company vehicles. Distribute the T-shirts among employs and ask them to wear those when they are moving in the market place so that people can recognize you brand easily.

Buy implementing these 7 steps you can drive the free traffic to our web site.

How To Increase Comments In My Blog DISQUS



How To Increase Comments In My Blog DISQUS

DISQUS is a comments platform that helps you build an active community from your website's audience. It has awesome features, powerful tools, and it's easy to install.Before this I have explain how to add IntenseDebate comment system to blogger blog and now I am going to explain how to add Disqus comment system to your blogger blog.


There are lot of good features with Disqus comment system when we comparing it with Blogger default comment system.

Realtime comment system

Comments become more like live discussions with realtime posting and updating. By offering a faster, more intuitive experience, Disqus is everyone's favorite way to comment.

Notification and reply system

The notification system lets people know when they've received a response. Best of all, they can continue the conversation straight from the email.

Inline media embedding

Full integration with media services such as Youtube, Flickr, and more. Attach media such as photos and videos right within the comments.

Mobile commenting

Fully compatible with mobile websites for commenting while on the go. The default mobile theme is formatted with smartphones, like the iPhone or Android phones, in mind.

Social integration

Full integration with Facebook, Twitter, and more. Let people login, comment, and share using social services they already use and love.

The Community Box

A quick way to show off what your community is made up of. The community box gives everyone a summary view of the activity and people participating on the site.

Liking and sharing

People can rate what they like by liking pages or comments and then sharing that on Facebook, Twitter, and other networks.

Moderation tools

Powerful and easy-to-use tools helps you keep your community under control. The moderation panel is designed for managing a large volume of incoming comments.

Spam-Be-Gone

Our in-house anti-spam technology keeps spam and unsavory people out of your community. Our anti-spam continually learns from the rest of the Disqus network to keep your site safe.

Mobile apps

Disqus apps are available for the iPhone, Android, and webOS phones. Manage your communities while you're on the go with these freely available apps.

Blacklists and whitelists

Make daily moderation easier with granular control over who gets to contribute within the community. Disqus gives you powerful tools such as blacklists, whitelists, and word filtering.

Import and export

Import existing comments into Disqus and sync up your data. All data is completely portable and can be exported at any time.

International languages

Disqus supports dozens of languages in addition to English. Complete your integration with native language support.

SEO-friendly and local sync

We offer plugins and integration methods that ensure compatibility with search engines.

Theme customization

Customize with CSS to smooth out the integration with your website. Or, use our advanced theme editor to craft your own custom theme.

Tweets and reactions

Disqus brings the conversation back to your site by collecting Tweets, mentions, and other reactions from around the web.

Profile management

Commenters control their personas and reputation across the different communities they participate on. Disqus makes it easy to track and keep conversations together.

Activity streams

Audiences stay engaged with insight into others' activity all over the web. Integrated activity streams let people see where else the smart people are talking.

Connected communities

Disqus reaches 200 million people every month across half a million websites and communities on the web. Keep the conversations lively by connecting your audience with the millions of others already on Disqus.

Before follow the instruction given below,

(a) Login to your Blogger Account.
(b) Backup your blogger template.
(c) Make sure that your blog is using Blogger Layouts. See upgrade instructions if not.
(d) Enable commenting. See instructions to enable commenting. Make sure that Who Can Comment? is set to Anyone.

Now Follow the steps given below. You can add Disqus comment system to your blog easily.

1. First create a account on Disqus.com.

2. Now visit this link to add your blog to the Disqus account:

http://disqus.com/admin/register/

3. Fill in the necessary details and click on "Continue".





4. Now you can see below screen. select the option as you like and click on "Continue" again.



5. Now can see installer instructions page.



Click on "Blogger" instructions.


6. Now click on "Add site..." button.
How To Increase Comments In My Blog DISQUS




7. You will bring to your blogger account. If there are multiple blogs under your Blogger account, be sure to pick the correct blog. Select your blog and click on "Add Widget" button.



You are done. you can see Disqus widget there in Blogger "page elements" page. For best performance, make sure that the widget is in the bottom slot of the bottom-most right column.

Now Disqus comment box will appear under your every blogger posts.

Note : Do you have existing comments in Blogger? You can import them into Disqus by visiting the import page under Tools.

Add Share Box button To Blogger




In this tutorial, I am going to show how to add a useful share box for your blogger blog. This share box contains official Tweet button with counter, official Facebook share button with counter, official Google Buzz button with counter, official Stumbleupon button with counter, BlogThis! link, Email This! link, Print This! link, Comments count link and Facebook like button. I have configure all this button for Blogger blogs, so you can add this share box quickly to your blog.


Now follow the steps given below to add this share box for your blog.

1.Login to your blogger Dashboard and go to --> Design- -> Edit HTML

2.Click on "Expand Widget Templates"

3.Scroll down to where you see below code:

<div class='post-header-line-1'/>

4.Now Copy Share Box code given below and paste it just below the above code.

NOTE: If you can't find <div class='post-header-line-1'/> in your template, paste your "Twitter tweet button" code just before <data:post.body/> .


<b:if cond='data:blog.pageType == &quot;item&quot;'>

<style type='text/css'>
.multisharebox {
  background: none repeat scroll 0 0 #EFEFEF;
  float: right;
  margin: 5px 0px 3px 10px;
  padding: 0 5px 0;
  text-shadow: 0 1px 0 #FFFFFF;
  width: 260px;
  border:4px solid #d8dfea;
}
.fb-like-boxtop {
  background: none repeat scroll 0 0 #EDEFF4;
  border: 1px solid #D8DFEA;
  color: #000000;
  float: right;
  font-size: 11px;
  margin: 0 0;
  padding: 5px 10px;
  text-align: left;
  width: 230px;
}
.fb-like-boxtop a {
  color: #000000;
  text-decoration:none;
}
.fb-like-boxtop a:hover {
  color: #000000;
  text-decoration:underline;
}
.fb-like-box {
  background: none repeat scroll 0 0 #EDEFF4;
  border: 1px solid #D8DFEA;
  color: #000000;
  float: right;
  font-size: 11px;
  height: 60px;
  margin: 5px 0;
  overflow: hidden;
  padding: 5px 10px;
  text-align: left;
  width: 230px;
}
</style>

<!-- Perfect Share Box : Created by www.bloggertipandtrick.net  -->
<div class='multisharebox'>
<table><tr>
<td><table><tr>
<td><a class='twitter-share-button' data-count='vertical' data-lang='en' data-related='' data-via='' expr:data-text='data:post.title' expr:data-url='data:post.url' href='http://twitter.com/share' rel='nofollow'/>
<b:if cond='data:post.isFirstPost'>
<script src='http://platform.twitter.com/widgets.js' type='text/javascript'>
</script>
</b:if></td>
<td><script expr:src='&quot;http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=&quot; + data:post.url'/></td>
<td><a class='google-buzz-button' data-button-style='normal-count' data-locale='en_IN' expr:data-url='data:post.url' href='http://www.google.com/buzz/post' rel='nofollow' title='Post on Google Buzz'/>
<script src='http://www.google.com/buzz/api/button.js' type='text/javascript'/></td>
<td><a expr:share_url='data:post.url' name='fb_share' rel='nofollow' type='box_count'/>
<script src='http://static.ak.fbcdn.net/connect.php/js/FB.Share' type='text/javascript'/></td>
</tr></table></td>
</tr><tr>
<td><div class='fb-like-boxtop'><a expr:href='data:post.sharePostUrl + &quot;&amp;target=blog&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=270,width=475\&quot;); return false;&quot;' expr:title='data:top.blogThisMsg' target='_blank'>BlogThis!</a> | <a expr:href='data:post.sharePostUrl + &quot;&amp;target=email&quot;' expr:title='data:top.emailThisMsg' target='_blank'>Email This!</a> | <a href='javascript:window.print();'>Print This!</a> | <b:if cond='data:post.allowComments'><a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 0'>No comments</b:if><b:if cond='data:post.numComments == 1'>1 comment</b:if><b:if cond='data:post.numComments &gt;= 2'><data:post.numComments/> comments</b:if></a></b:if></div></td>
</tr><tr>
<td><div class='fb-like-box'>
Do you like this post?
<iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url + &quot;&amp;layout=standard&amp;show_faces=false&amp;width=230&amp;action=like&amp;font=arial&amp;colorscheme=light&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:230px; height:40px;'/>
</div></td>
</tr></table>
</div>
<!-- Perfect Share Box : Created by www.bloggertipandtrick.net  -->

</b:if>

Note : This share box now will add to your Blogger post pages only. If you want to show it in every pages, then simply remove green lines from the code.

5. Save your template and you are done.



Thursday 19 May 2011

How to find enable Hidden Themes in windows 7




Windows 7 by default has only few themes available for customization. There is some hidden themes available for certain regional countries such as Australia, Canada, Great Britain, United States and South Africa.

To get those do the following steps

1. Open Windows Explorer and click Organize.

2. Select Folder and Search Options and navigate to the View tab.

3. Select Show hidden files, folders and drivers and uncheck Hide protected operating system files (Recommended). Click Yes, if prompted for confirmation.

4. Click OK and now browse to the folder: Windows\Globalization\MCT.

5. There are five folders here with the name with format MCT-XX (where XX is AU, CA, GB, US, or ZA)
which represents globalization settings for each region. Go into the folder that you want to activate its theme.
Note that AU, CA and ZA regions have the same themes.

6. Open the Theme folder inside the selected region folder.

7. Double click on the XX.theme file to apply the theme to the Windows 7 desktop system. Once a theme is executed and activated, the theme will be available and saved into Personalization options, so that user can select this theme directly from the personalization settings.

8. Now to go to Folder Options to reverse the first 5 steps to hide the hidden and protected system files and folders again.

Interesting facts, Tricks and tips of WINDOWS 7






Interesting Facts , Tricks and tips of WINDOWS 7

* Windows key + Left: docks current window to the left side of the screen.

* Windows key + Right: docks current window to the right side of the screen.
    * Windows key + Up: maximizes and/or restores foreground window.

    * Windows key + Down: minimizes active window.

    * If you want a more Vista-esque taskbar rather than the superbar (why anyone would revert is beyond me), right-click the Taskbar, go to Properties, check the ‘Use small icons’ option, then change the “Taskbar Buttons” option to ‘Never combine.’

    * Windows 7 now burns ISO files themselves instead of making users grapple with third-party applications.

    * For those lucky people with a multi-monitor setup, Windows + SHIFT + Left (or Right) will shift a window from monitor to monitor.

    * Gone is the “Add Font” dialog. It’s been replaced with a much nicer system. Download a font and double-click it (you’ll be greeted with the familar font window, but you should notice it now has a ‘Install’ button).

    * Windows 7 now includes Gabriola. This is an elaborate display typeface that takes advantage of OpenType layout to create a variety of stylistic sets.

    * If you press Windows + 1, it will create a new instance of the first icon in the task bar. This is handy if you do a lot of coding and need to open several instances of a program.

    * If you right-click on a Taskbar icon, it brings up the much talked about Jump List. However, the same can be done by clicking with the left mouse button and dragging the icon “out” (so to speak). This was specifically designed for touch-enabled computers, such as your lovely HP TouchSmart PC.

    * To run a program as an Administrator, it’s now as easy as holding CTRL + SHIFT when you open the application.

    * you can now create a ‘System Repair Disc.’ This is a CD bootable version of Windows 7 that includes the command prompt and a suite of system tools. Very handy for those really tough spots (which, with this still in beta, could be just around the corner). To get to this, simply open the Start Menu and type: “system repair disc” in the search field.

Trick to find cd keys with google



ok, this is a little trick that i usually use to find cd keys with google.
if your looking for a serial number for nero (for example) goto google.com and type nero 94FBR and it'll bring it up
this works great in google
HOW DOES THIS WORK?
Quite simple really. 94FBR is part of a Office 2000 Pro cd key that is widely distributed as it bypasses the activation requirements of Office 2K Pro. By searching for the product name and 94fbr, you guarantee two things.
1)The pages that are returned are pages dealing specifically with the product you're wantinga serial for.
2)Because 94FBR is part of a serial number, and only part of a serial number, you guarantee that any page being returned is a serial number list page.
I hope this trick help you finding your ccd keys easily
Enjoy :)

Windows Keyboard Shortcuts With Start Button



Just pressing the windows key alone will show the ‘start’ menu. But you can also use this key for many other shortcuts when combining this key with another letter. Here are the list of windows key shortcuts.

Win key + R : To open ‘Run’ box in Start Menu
Win key + F : To ‘Find’ window in Start menu
Win key + E : To open Windows Explorer
Win key + Pause/Break : To open System Properties
Win key + M : All open windows will be minimised
Win key + Shift + M : All minimised windows will open
Win key + D : Will show all minimised windows
Win key + Tab: Will rotate and select programs in the task bar

Windows 7 Shortcut Keys



Here are some useful shortcut keys for Windows 7 users.
Windows key + Up Arrow = Active window will be maximized
Windows key + Down Arrow = Active window will be minimized
Windows key + Left Arrow = Active window will be moved to the left
Windows key + Right Arrow = Active window will be moved to the right
Windows key + Home Key = All windows will be minimized. If already minimized they will be opened.
Windows key + T = The first application in task bar will be given focus. If you press T continuously the focus will be switched to other applications in that order.
Windows key + Space bar = If you keep pressed, Windows Startup will be shown.
Windows key +  1-9 any number key = The respective application in the task bar will be given focus.
Windows key +  Plus key = Window will be zoomed in
Windows key + Minus key = Window will be zoomed out.

Shortcut keys in MS Word




CTRL+B : To make the words bold. 
CTRL+I : To italicize the words 
CTRL+U: To underline the words 
CTRL+DEL: To delete the word on the right of the cursor 
CTRL+BACKSPACE:  To delete the word on the left of the cursor  
CTRL+SHIFT+SPACEBAR: To create equal spacing.  
CTRL+C:  To copy the selected text   
CTRL+X:  To cut the selected text  
CTRL+V:  To paste the copied or cut text.  
CTRL+ALT+V:  To paste special   
CTRL+SHIFT+< : To reduce the font size  
CTRL+SHIFT+>: To increase the font size  
CTRL+[ : To reduce the font size 
CTRL+]:  To increase the font size  
CTRL+HYPHEN:  To create continuous hiphen  
CTRL+SPACEBAR: To remove paragraph or character formatting  
CTRL+SHIFT+V: To paste the previously used format  
CTRL+Z : To undo the last action  
CTRL+Y:  To redo the last action that was undone.  
CTRL+SHIFT+G: To bring the word count dialog box.  
CTRL+L:  To align text to the left  
CTRL+E:  To centralize the text  
CTRL+R: To alogin the text to the right of the screen.  
CTRL+M:  To make the paragraph or the selected text in the margin. 
CTRL+1:  To make the spacing between lines as 1  
CTRL+5:  To make the spacing between lines as 1.5  
CTRL+2:  To make the spacing between lines as double  
F7: :  To check spelling and grammer  
SHIFT+F7 : : To show thesaurus options  
CTRL+SPACE : To enable/disable auto correct  
CTRL+SHIFT+8:  To show/hide hidden characters.

Adjusting Windows Task bar size: In Windows 7





Adjusting Windows Task bar size: In Windows 7





In Windows 7, the usual size of the Windows Taskbar is a bit larger than usual. This takes some extra space at the bottom of the computer screen. This makes selecting the applications easier as the buttons are bigger. However for those who are using smaller screens this may be a bit annoying as it takes more space on the screen. If you want you can make the size of the taskbar smaller by following the steps below.

*In a blank space in the taskbar right click and select properties.
*You will see the ‘Taskbar and Start Menu Properties’ dialog box with many tabs.
*Here click ‘Use small icons’ and select it.
*Now click OK and close the dialog box.
Now the task bar will occupy smaller space. If you want you can also hide the task bar when not required. If you want to hide the task bar, in step 2 above, select the ‘Taskbar’tab, and in ‘Taskbar appearance’, select ‘Autohide the taskbar’. If you choose this, if you bring the mouse to the bottom of the screen the taskbar will appear and if you move away from the task bar, it will be hidden.

Shortcut function keys in excel




Here is a list of shortcut keys in Microsoft Excel.
1.      F1: Opens a help task pane
2.      F1 + Ctrl: Opens or closes the help window
3.      F2: To edit the text in the active cell
4.      F2 + Shift: To write a comment in the active cell
5.      F2 + Alt: Opens the save as dialog box
6.      F3 + Shift: opens the insert dialog box
7.      F3 + Ctrl: Opens the define name dialog box
8.      F3 + Shift + Ctrl:  Opens the create name dialog box
9.      F4:  To redo the last command
10.  F4 + Ctrl: To close the workbook window
11.  F4 + Alt: To close the excel program
12.  F5: Opens the Goto dialog box
13.  F5 + Ctrl: brings back to the first level of workbook
14.  F6: To shift between help taskbar and the excel window
15.  F6 + Shift: To goto the previous square in the open worksheet
16.  F6 + Ctrl: If more than one workbook is open to switch between them
17.  F7: To open spelling correction window
18.  F7 + Ctrl: When workbook window is not maximised it will move the window
19.  F8: To activate / deactivate extended mode
20.  F9: Will calculate all the worksheets in all open workbooks
21.  F9 + Shift: Will calculate the active worksheet
22.  F9 + Ctrl: To Minimise the workbook window
23.  F10: Will select the menu bar
24.  F10 + Ctrl: To open minimised window
25.  F11: Will create a chart using the current range
26.  F11 + Shift: To select a new worksheet
27.  F11 + Alt: To switch between visual basic editor and the worksheet
28.  F11 + Alt + Shift: Opens microsoft script editor
29.  F12: Opens save as dialog box
30.  F12 + Shift: Saves the active workbook
31.  F12 + Ctrl: To open the Open dialog box
32.  F12 + Ctrl + Shift: Opens the print dialog box

Ctrl+Shift+O: To select all the cells with comments. If there are no cells with contents then you will get ‘No cells found’ message.
Ctrl+[ : To show which are the related cells in the selected formula.
Ctrl+] : To show the related formulas of the selected cell.
Shift+Arrow key : The selection will be extended to one more adjacent cell.
Ctrl+Shift+Arrow key : The selection will be extended to the last cell with data either horizontally or vertically based on your current selection.
Shift+Home : The selection will  be extended to the first cell horizontally.
Ctrl+Shift+Home : Selection will be extended to the first cell in the worksheet.
Ctrl+Shift+End: Selection will be extended until the last cell in the worksheet/.
Enter: Cursor will be moved to the next cell below the current cell.