English French German Spain Italian Dutch Russian Portuguese Japanese Korean Arabic Chinese Simplified
by : BTF
Showing posts with label Advertise. Show all posts
Showing posts with label Advertise. Show all posts

Dec 6, 2011

161 Add background music to your blog

After uploading the "Sweet Dreams" template, I was asked how to embed background music in a blog. It's actually quite simple to do this, and there are various methods you can use.
In this post, I'll concentrate on actually embedding the music (rather than adding widgets such as Last.fm playlists). You can see an example of embedded background music here and also further down this page...
The easiest method of adding background sound is to include a line like this in your blog template, just after the opening <body> tag:
<bgsound src="http://yoursite.com/yoursound.mp3" loop=infinite>
where the URL is that of the background music you wish to use. This method works perfectly well, but visitors to your site will not be able to switch the music off if it becomes distracting.So instead, you may prefer to use this method instead, which is compatible with all browsers (press the play icon to start music):
This is achieved by including the following code somewhere in your template (eg: the sidebar):
<embed width="200" src="http://yoursite.com/yourmusic.mp3" autostart="false" loop="false" height="50"></embed>
You can change some of the variables to suit your needs:
  • autostart: set to "true" to make the music begin as soon as the page is loaded, or "false" to ensure the user has to press the play icon
  • loop: set to "true" to have the music play over and over, or "false" so that it plays only once.
  • height: if this is set to "40", only the play options will be visible. You can make this larger if you prefer, in which case blank space will be visible.
Using either method, you can link to .mp3, .mid or .wav music files. However, you must be aware of copyright restrictions, and ensure you have the appropriate permission for use for the music you decide to use!Here are some sites I've used for copyright-free music you could use in your blog:

948 Blogumus: a flash animated label cloud for Blogger!

"Blogumus" is an Flash based tag cloud widget which uses scripts converted from Roy Tanck's WP Cumulus plugin for Wordpress. I fell in love with Roy's original Cumulus plugin when I saw it, and simply had to learn how to convert this for use in Blogger powered blogs. The result is the widget you can see in action at the top of this post. Hover your mouse over the Flash object to see the animation begin. In this post, I'll explain how you can add Blogumus to your own Blogger layout with ease!


Update #2 (27th April 2010)

Due to hosting issues, Blogumus has stopped working for those who had previously installed using these instructions. I've resolved the hosting issues by uploading to Google Sites and have edited the following tutorial for installation accordingly.
Unfortunately, this does mean you'll have to reinstall your Blogumus widget or change the URLs to the swfobject.js and tagcloud.js files in your template code in order to ensure your widget works properly again (new installations should work just fine).
If you'd like to reinstall this widget, you can delete the Blogumus gadget from within the Layout>Page Elements section of your Blogger dashboard and use the instructions below to add it again.
If you'd simply like to change the URLS to the files, go to Layout>Edit HTML and tick the "Expand widget templates" box. Then locate the following two URLs in your template:
http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf
and
http://halotemplates.s3.amazonaws.com/wp-cumulus-example/swfobject.js
And replace them with the following URLs:
http://sites.google.com/site/bloggerustemplatus/code/tagcloud.swf
and
http://sites.google.com/site/bloggerustemplatus/code/swfobject.js
You can preview your template to ensure you've made no mistakes before saving, and your updated code should display the tag cloud in your blog.
Sincere apologies for the inconvenience this may have caused!

Update #1: Improved Widget Code

I have updated the code required to run this widget to activate links in the tag cloud Flash movie. If you have already installed Blogumus, please replace your widget code with the new updated code, or reference the additional lines to modify your existing installation.

How it works

This widget uses a combination of JavaScript and Flash animation to parse and display your blog labels. Once installed in your template, it should work "out of the box" without any additional tweaking required, though of course you may prefer to change the variables for color, background and size if appropriate :) You should also be able to move the Label Cloud widget through the Page Elements page of your dashboard if you prefer display in a different layout location. To see Blogumus in action, both Flash and Javascript must be installed and enabled for your internet browser. However, it does degrade relatively gracefully, and label links will still be clickable (though not animated) for those who do not use JavaScript of Flash (including search engine spiders).

How to install Blogumus in your Blogger layout

Installing Blogumus in your Blogger layout is surprisingly simple! You should only need to copy and paste a section of code to your Blogger template, though any tweaks for the style of display will require some manual editing. Here are the steps required to install Blogumus in your Blogger layout: Go to Layout>Edit HTML in your Blogger dashboard, and search for the following line (or similar):
<b:section class='sidebar' id='sidebar' preferred='yes'>
Immediatly after this line, paste the following section of code:
<b:widget id='Label99' 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'>
<script src='http://sites.google.com/site/bloggerustemplatus/code/swfobject.js' type='text/javascript'/>
<div id='flashcontent'>Blogumulus by <a href='http://www.roytanck.com/'>Roy Tanck</a> and <a href='http://www.bloggerbuster.com'>Amanda Fazani</a></div>
<script type='text/javascript'>
var so = new SWFObject(&quot;http://sites.google.com/site/bloggerustemplatus/code/tagcloud.swf&quot;, &quot;tagcloud&quot;, &quot;240&quot;, &quot;300&quot;, &quot;7&quot;, &quot;#ffffff&quot;);
// uncomment next line to enable transparency
//so.addParam(&quot;wmode&quot;, &quot;transparent&quot;);
so.addVariable(&quot;tcolor&quot;, &quot;0x333333&quot;);
so.addVariable(&quot;mode&quot;, &quot;tags&quot;);
so.addVariable(&quot;distr&quot;, &quot;true&quot;);
so.addVariable(&quot;tspeed&quot;, &quot;100&quot;);
so.addVariable(&quot;tagcloud&quot;, &quot;<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>&quot;);
so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;);
so.write(&quot;flashcontent&quot;);
</script>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
Then preview your template. If installed correctly, you should see the tag cloud appear in your sidebar. Then you are free to save your template, edit the colors and dimensions as required, or move it to a different location. That's all!

Customizing Blogumus

In this default installation, Blogumus includes the following preset variables:
  • Width is set to 240px
  • Height is set to 300px;
  • Background color is white
  • Test color is grey
  • Font size is "12"
If you would prefer to make your widget wider, shorter, change the color scheme, etc, you will need to do this by editing various parts of the code. I'll go through these options in the order they appear in the widget code. Editing width and height The variables for width and height are found in this line of the script:

var so = new SWFObject("http://sites.google.com/site/bloggerustemplatus/code/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");

The width (currently 240) is highlighted in red, while the height (300px default) is highlighted in blue. These numerical values specify the width and height in pixels, so you can alter these of you prefer. Editing background color You can change the background color from white to any other color by altering the hex value in the same line:

var so = new SWFObject("http://sites.google.com/site/bloggerustemplatus/code/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");

For example, if you prefer a bright red background, you may replace #ffffff with #ff0000. Take a look at this page for a list of commonly used hex color codes. Alter the color of text By default, the text is set to display as dark grey ( hex value #333333). You can alter this variable in the following line:

so.addVariable("tcolor", "0x333333");

Be aware that "tcolor" is a Flash variable and doesn't include the usual hash symbol of hex color codes. Be sure to only replace the numbers! Adjust the font size The maximum font size of tags is specified in this line:
so.addVariable("tagcloud", "<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>");
You can alter this to ensure tags are displayed in a bigger or smaller font if you prefer by changing "12" to a larger or smaller number. While making any of these changes, you should be able to preview your widget and be certain that your new choice of color, dimensions and background are suitable for your needs.

Credits, support and requirements

Blogumus is based on the original WP Cumulus plugin by Roy Tanck, and was converted for use with Blogger layouts by myself. Please leave the credit links in the widget code intact. These will not be seen by the majority of your blog readers (as they will only display if JavaScript and Flash is not activated) but leaving these links intact is a great way of passing some link love on to Roy for all his hard work, and to inform other Blogger users that they can find the widget codes on this site.

Support/Issues

If you have any problems installing or using this widget, please leave your comments below or direct these to the Blogger Buster forums as Roy will be unable to provide support for installation in Blogger blogs!

Requirements

For Blogumus to display properly in your template, you will need to have Flash Player 7 or higher. You can download the latest Flash Player plugin for your browser from Adobe. I'm not sure that this installation will support special characters as tags (only Latin characters supported at present). If you do experiecce issues with labels displaying incorrectly, please let me know. I'll try to add more support, but have very little experience using Flash!

Your thoughts?

I hope that you enjoy using Blogumus in your own Blogger blogs! Please feel free to share or syndicate this page with your favorite bookmarking service if you think it is worth a mention, or subscribe to the newsfeed to learn of more great Blogger tutorials as they are posted.

Dec 5, 2011

This is an SEO Tips to get Found by Google

There are several parts on your website that can be altered to boost your online visibility to search engines. Let's start with the items that can be seen with the eye.

Visible On Page SEO are parts of your site to optimize that you can see. These can be put in by you if you built your site, if you have access to a content management software by your developer or you can tell the person developing your site to do this for you.

THE PAGE TITLE is the very top bar of your web browser right next to the browser logo. This should say exactly what your site is. You can make it a phrase or a complete sentence. Just make sure it is stating exactly what your site is about.

URL or your web address should be very clear as to what type of company or site you are.

Headings
with H1, H2, H3 HTML tags are seen by search engines as more important than the other content.

HTML tags are seen by search engines as the most important thing on your site. Make sure whoever builds your site enters them in so that the search engine can pick them up.

Page text is somewhat important, make it relevant and be careful which words you italicize or bold - be choosy.

Even if your website looks good the eye, search engines may see it differently. You need to plug certain clues into your site to make it stand out to the search enging and help them understand the main point and type of site you have. People can then find you site based on what you really want them to find rather than being misguided. You need to make sure you use the right keywords in the page content. Your page title needs to be short and use the right keywords. You need to use the same keywords in the H1, H2 and H3 tags on the page as well, and if you can, put the keywords into the URL or your web address name.

Invisible On Page SEO are parts of your site to optimize that you can't see, but search engines can.

Description - When building your site you should inclued a brief description what your company is about or what your site is used for.

Keywords -These are designated in your site's HTML code, keywords give search engines a general idea about the content of your site.

Any one of these tips if done alone will not really have much affect on your searchability, but if done correctly the combination of them will make all the difference.

Mortgage Privacy Policy

The privacy of our visitors to Mortgage Modification Loan is important to us.

At Mortgage Modification Loan, we recognize that privacy of your personal information is important. Here is information on what types of personal information we receive and collect when you use and visit Mortgage Modification Loan, and how we safeguard your information. We never sell your personal information to third parties.

Log Files
As with most other websites, we collect and use the data contained in log files.
The information in the log files include your IP (internet protocol) address, your ISP (internet service provider, such as AOL or Shaw Cable), the browser you used to visit our site (such as Internet Explorer or Firefox), the time you visited our site and which pages you visited throughout our site.

Cookies and Web Beacons
We do use cookies to store information, such as your personal preferences when you visit our site. This could include only showing you a popup once in your visit, or the ability to login to some of our features, such as forums.

We also use third party advertisements on Mortgage Modification Loan to support our site. Some of these advertisers may use technology such as cookies and web beacons when they advertise on our site, which will also send these advertisers (such as Google through the Google AdSense program) information including your IP address, your ISP , the browser you used to visit our site, and in some cases, whether you have Flash installed. This is generally used for geotargeting purposes (showing New York real estate ads to someone in New York, for example) or showing certain ads based on specific sites visited (such as showing cooking ads to someone who frequents cooking sites).

DoubleClick DART cookies
We also may use DART cookies for ad serving through Google’s DoubleClick, which places a cookie on your computer when you are browsing the web and visit a site using DoubleClick advertising (including some Google AdSense advertisements). This cookie is used to serve ads specific to you and your interests (”interest based targeting”). The ads served will be targeted based on your previous browsing history (For example, if you have been viewing sites about visiting Las Vegas, you may see Las Vegas hotel advertisements when viewing a non-related site, such as on a site about hockey). DART uses “non personally identifiable information”. It does NOT track personal information about you, such as your name, email address, physical address, telephone number, social security numbers, bank account numbers or credit card numbers. You can opt-out of this ad serving on all sites using this advertising by visiting http://www.doubleclick.com/privacy/dart_adserving.aspx

You can chose to disable or selectively turn off our cookies or third-party cookies in your browser settings, or by managing preferences in programs such as Norton Internet Security. However, this can affect how you are able to interact with our site as well as other websites. This could include the inability to login to services or programs, such as logging into forums or accounts.

Deleting cookies does not mean you are permanently opted out of any advertising program. Unless you have settings that disallow cookies, the next time you visit a site running the advertisements, a new cookie will be added.

Yahoo! Answers | The ultimate guide to traffic generation with YA

In the spirit of my traffic generation post and Kristi’s book (click for my review of Blog Post promotion book), I decided to bring one thing closer to you – using Yahoo! Answers for traffic generation and blog post promotion.

What will you find in this post?

A detailed tutorial on how to use Yahoo! Answers and what options are there. That is the “technical” part. For the non-technical part, I will tell you how to use it to get the max out of it and what results have I had with YA.
Yahoo answers logo
Also, if something is not important, I will skip it and try to make it as simple and useful as I can.

Before we start with Yahoo! Answers

The first thing you will need is a Yahoo account. I am sure almost everyone has it, but if not, go register one.
Once you have a Yahoo account, log in and go to Answers.yahoo.com. That is where all this fun will be happening.

Let’s get on with it

The first thing you will see on the home page, and the most important, will be this:
yahoo answers home
As you can see, there are four tabs. I will explain each and every.
One little note about “best answer” I will be mentioning a lot. Obviously there are questions and answers. But in YA there is the “best answer” which is the one that has been chosen either by the person who asked the question or other YA users.
That answer is featured under the question, gets the most points and that is the spot you want your answers to be in. There are usually 4 days to answer the question.
I will start with About tab, so you can start using YA right from the first moment.

About tab on Yahoo! Answers

The links that you will see when you hover over this tab are:
  • How answers works – where you can learn the very basics of the service.
  • Points & Levels – will show you the exact number of points you will gain or lose depending on different actions taken in YA. Your level on YA depends on the number of points you collect. Study it so you know what to expect.
  • Community Guidelines – dos and don’ts of YA.
It is important to know a few things when it comes to points and levels. To get people to click your link on YA, you need that link to be live.
The links you post as a level 1 user are not live! Still, that does not mean you should not post any. Because once you become a level 2 user, all of your links will become live (clickable).

Home tab on Yahoo! Answers

There are three choices in the YA  home tab:
  • Ask questions
  • Answer questions
  • Discover great answers

Ask

When you type the question in the field and hit Continue, you will be taken to a new, more detailed version of asking the question.
You have the option to write more details about the question. The next window you will get is the one where you will choose the category of your question. After that, you can preview and submit your question.

Discover

This option will basically open resolved questions (you can’t answer those) in all categories for deeper browsing.

Answer

Answer questions – Browse Open Questions option will take you to a new window where you can do a more detailed browsing.
yahoo answers categories Arrow number 1 – choose a category.
Arrow number 2 - choose if you want to browse:
  • Open questions you can add the answer to.
  • In voting means you can only vote on the already given answers.
  • Resolved are questions that already have the best answer chosen.
Arrow number 3 – You can sort the questions in several ways:
  • newest to oldest and vice versa
  • most popular
  • fewest answers to most answers and vice versa
Before I go on with this part, let me give you a few tips on these options.

Good ideas for the question browsing

Although you will be using Open questions to sort the ones you can give an answer to, you should not easily discard In voting and Resolved ones.
You can use In voting questions to vote on the offered answers and gain points. Be fair and don’t blind vote, YA is a great community and it would be nice that the best answers are really the best.
You can use Resolved questions to learn what type of answers are the best ones. That way you can always post great answers and hopefully be chosen as “best answer”.

Browse categories tab

If you hover over it, you will get the list of all categories that you can then click on. If you click the tab, you will get the window like in the image above, for further browsing.

Search Yahoo! Answers

As you can see in the first image, at the bottom, there is a Search option where you can type in your keyword and do a search on it. If you choose the Advanced Search, you can choose what type of questions you want to be listed.
For example, if you want to answer questions about Twitter, you will type in Twitter and choose open questions in Advanced search.

How do you answer a question?

Click on the image to enlarge it and see the simple steps you need to take after you find an open question you want to answer.
how answer yahoo question

My activity tab

Here is a screenshot of my YA profile:
yahoo answers
This tells you straight away why I had great success with Yahoo! Answers. Out of 75 answers I posted over there, 71% were chosen as Best answers.
I am actually very inactive on YA but still have great results. The time I was really active was when I was trying to get to level 2 so my links would become live links.
Why is this percentage important? Some can say it isn’t. But a lot of people will take a look at your profile before deciding if they should trust your answers or not. The higher percentage of best answers, the more they trust you.
That means that you establish yourself as an expert (I don’t like this word, though) in your niche.  That simply means you will get more clicks on your links.

How to get high percentage of best answers?

You must choose both questions and answers carefully!

Some good questions to answer are:

  • The ones that were just posted and seem urgent. There is a big possibility that the person who asked it, will choose your answer as the best one, straight away.
  • The ones that are about to be closed. You can read the answers and write a better one.
  • The ones with no answers.

How to answer:

  • Write an answer that fully answers the question. Don’t make people click to find the full answer, that doesn’t usually work on YA.
  • Attach a link in the Source box, not the answer!
  • Don’t attach link to every answer you make! I usually answer 2 questions without links and one with a link.
Why shouldn’t you attach links all the time? You are kinda competing with other YA users. Some of them will report (flag) answers out of pure jealousy. I saw too many accounts being closed for no obvious reason.
However, you can complain about it and if your account is restored, the person who reported you will have “less weight” next time they report someone.
Why should you avoid to answer questions with too many answers? Because when it comes to voting, no one is really going to read through 20 answers and vote for yours (or any best one). They will just blind vote and that can ruin your score.

An example

OK, I am talking the talk, let me walk the walk. Here are two of my best answers, posted 7 months ago. One was chosen as the best by the person who asked the question and one was chosen by voters (the questions are related to my pet site):
Is my parakeet sick?
How many words can a parakeet learn?
Let’s analyze them.
My answers are easier to read than others (formatting). They fully answer the questions. They both have links but only as a “source of my info”, the whole info is in the answer. They won over some of the Top contributors’ answers.
I think if you read all the answers, you will see how different they are.

Important thing to consider

Why should you always go for the best answer? As I mentioned, if your answer gets chosen as the best one, it will be displayed immediately below the question, at the top of the page.
Yahoo! Answers come up in search results a lot! So if your answer is the best and someone is searching for that question in Google, guess what that means. Yes, you are gonna get some traffic.

Extra shot

Don’t forget one more awesome possibility when it comes to using YA. When you read so many questions in your niche, you will notice a pattern.
Some questions are asked over and over again. Those are great post ideas. You can get literally thousands of post ideas from Yahoo! Answers.

True story

A friend of mine that has a site about health answered a YA questions once. The questions was along the lines if there is any use of eating the orange pulp. She answered the question the best she could and attached the link to her post about oranges and health on her site :)
Believe it or not, that question and her (best) answer was featured on Yahoo Home page as one of the stories of the day (yes, that can happen) and you can only imagine how many visits she got that day and for some time after it. We are talking about tens of thousands people in a day!

Post bullseye

Yahoo! Answers can be a great source of traffic if used properly. It can also help you promote your blog by answering related questions and pointing people to some of your posts.
You should definitely play fair there, cause you don’t want to be banned and kill that traffic source.
Yahoo! Answers is perfect for any blog and any niche!
Questions for you:
  • Have you used Yahoo! Answers before?
  • Do you like the idea of using it?
  • Will you use it?
  • Would you add anything to this?
Please comment and share this post if you like it :)

SEO 101 | The Beginner’s Ultimate Guide for On-page SEO

This is something I was planning to do for awhile and after receiving many questions on the subject, here it is – SEO 101, the beginner’s ultimate guide for on-page SEO.
According to some e-mails and comments I get, SEO seems to be one of the hardest obstacles bloggers run into. The good thing is, when you learn the basics right, you will find SEO to be a breeze compared to some other stuff.
Before I start explaining this, although some will disagree with certain tips, I am writing about what worked for me! It helped me rank high in Google, get PR and receive thousands of visitors every day (talking about niche sites too, not just this blog).
Little note – the post is written for complete beginners, so I am sorry if too many details get on your nerves :)

What about SEO am I going to show you in this post

  • on-page SEO (what you need to include in a post for it to rank good in Google)
  • how to apply it to WordPress
  • extra tips and observations

The very beginning

What is SEO? SEO stands for Search Engine Optimization and it basically means that you are optimizing the visibility of your page for the search engines. I will skip the mumbo jumbo about the search engine spiders and other things that you don’t really need to worry about too much.
Just follow the simple steps and you will be good :)

Start with a keyword

Optimizing means that you will make your page just about perfect to be found for a keyword. For best results you should always be focusing on writing posts for a single specific keyword. If you don’t believe me, go to Google and type in MarketMeSuite. What position is this blog at?
A single keyword can be made of several words, so some examples would be: “YouTube traffic generation”, “free Twitter tools”, “cheap vacation rentals Florida”, etc.
Do some keyword research and choose which one you want your post to rank for.
IMPORTANT: I will not go into keyword research here, as it is a topic for itself but the main things is – choose keywords that are not too competitive. They are easier to “win” (rank for).
And this is where all the fun starts…

Parts of the page that matter

This is what you will focus on:
  • URL
  • Title
  • Keywords
  • Description
  • Page content
  • Images
  • Links
For the sake of this SEO 101 – ultimate beginner’s guide I will imagine our targeted keyword is “social media icons“.

SEO for URL

Your URL is the address of your page. The URL of this page is http://live-your-love.com/seo-101-beginners-ultimate-guide/.
The URL of our example page would be http://yourblog.com/social-media-icons/
How do you create a URL?
The main thing is to get rid of the default WordPress URL which is something like http://live-your-love.com/?p=123. You want your URLs to be simple, pretty and at the same time tell people what will they read about, if they click it.
To change this go to your WP dashboard > Settings >Permalinks. The image below shows my settings. I prefer having post name without my blog name attached to it. So to get the simple but optimized URL like the ones I have, just set your permalinks settings like in the image:
seo permalinks wordpress
After you set this up let’s go to the post editor. When you are writing a post this is one of the things that can happen:
permalink seo
If you don’t put a title and save a draft, WordPress will automatically create an URL. In this case it assigned the number. Because there is no title.
If you put a title, your title will become a part of the URL. So if you title the post “Social media icons”, your URL will look like in the example  - http://yourblog.com/social-media-icons/.
NOTE: This title, although SEOed, needs to be written for humans as well. If you read the title, you will know what it is about, but will it get the click?
So while you are optimizing for the search engines, do some human optimizing as well. In this case, in the title field, I would put something like “Social media icons | 30 free icon packs you must have”.
If you put all that in the title, it will become your URL. You don’t want all that in the URL.
  • You should always aim to have only your keywords in the URL.
  • If there are more words included, you should aim for the keyword to be at the beginning of the URL.
  • Always delete “stop words” from your URL (in, at, from, to…)
So to fix this, click the edit button (on the right of the URL) and edit it. Just leave “social-media-icons” and delete the rest.
  • URLs can not contain spaces and the best way to create them are dashes separating the words.
You can use the underscores as well, or put all the words together. I never do, no matter how simple the words are.

SEO for the title

I started to talk about titles above, how to make them SEOed but written for humans as well.
The main thing is to include your specific keyword “social media icons” in the title. Put it at the beginning or as close to the beginning as you can. The second or third place is the best, the fifth is the farthest you should go.
One more reason why you need to pay attention to your titles is that your title is the link to your page in the Search engine results.
title SEOI pointed the arrow to the second title to stress how good it looks for humans, compared to the first one. It might get the click easier.
In this second case I would have written the title like “Social Media Icons | The best freebies all in one place”. You get it?
The best length for titles is 64 characters. Some say 70 is the max, some say 80 characters is the max. Try to keep it up to 70 and you will be on the safe side.

SEO for keywords

Meta keywords is a spot where you are supposed to write down the keyword you are targeting your page for. You should list no more than 5 keywords.
In our case, you could write only “social media icons”. But you could also write it like “social media icons, vector icons, free icons”. The main thing is to include your specific keyword. If you include additional ones, make sure they are describing what’s on the page.
The point of this is telling the search engine what your page is about.
Some say that the search engines are not reading this info any more because people stuffed keywords for better rankings before so this part of the on-page is disregarded.
I still put them and I always will. I ranked some of my sites very, very high doing this and don’t see why would I stop.
NOTE: I have heard some bloggers suggest that you should not put your keywords in the Meta keywords because that way your competition can see what you are targeting. Bulls..t!
There are paid and free tools that can check everything and not putting your keywords there won’t save you from competition.
Here is how one of those blogger’s strategy works for a blog… I used some of my paid tools (and did the same with free ones) to find out the following — I run a spider-make-believe on the blog and saw what keywords are potentially targeted (by the way they were located on the pages). All the keywords matched the blogs topic. Then I ran rankings check and saw that the blog is not ranking great for any of those words. It was ranking for some pretty non related stuff. So now I know what are they trying to rank for and I know they are not doing a great job. I can apply my standard SEO practices, build a few quality links and skip them in SE rankings.
Extra note: Be careful when you take tips for granted (even on my blog). Not everyone knows what they are doing and not everyone can make the same things work with the same results.

SEO for description

Meta description is a place where you will describe the page. Think of it as an ad for your page. People coming to your blog won’t see it on the blog itself. But they will see it in search engine results and that is where you need to “sell your page” good.
SEO meta descriptionAgain, the main thing is to include your specific keyword in the description. Don’t just copy your title in the description of the page.
Include the keyword once so you don’t stuff your description with keywords. Great thing to do, when it comes to the description is write one that will include the specific keyword, a related keyword or a synonym, tell people what the page is about and what’s in it for them.
A great description for a travel page, i.e. would be “Rome, Italy, can be a very expensive place. If you are looking for cheap Rome hotels here are some great ones.”
You should keep your description up to 150 characters.

SEO in WordPress

It is very easy to do this in WordPress cause you can use a plugin that will show you the fields you need to fill in. This blog runs on Thesis theme so I am using the Thesis SEO options:
thesis theme seo
For those who are not using Thesis, the best option is All in one SEO pack plugin. Here is how it looks for those who are using it:
all in one seo pack plugin

SEO for page content

Page content is the post itself. The stuff you write :)
Start your post with your specific keyword, in different words put your specific keyword in the first sentence. Try to include it in the first 90 characters (space counts as a character as well).
Of course, you will mention the specific keyword in the post again, that is what natural writing requires, but never stuff your post with keywords.
Some keywords you want to rank for sound weird, because often people will type them in Google like that. For example “buy laptops London”.
You can’t write like that and not sound funny. But you can write “Are you searching for a place to buy laptops in London?” In this case “in” is the stop word and Google will, most likely, disregard it. So you can still target the words that are weird but have great numbers.

SEO for images

Images can be optimized as well. What you need to optimize in this case are ALT tags.
Here is how it looks in the code:
<img title=”title-of-the-image”
src=”img URL” alt=”keyword”
width=”300″ height=”300″>
Put your specific keyword in the ALT tag. This is how I was first found for the first site I have ever built. By Google Image Search.
Of course, it would be the best if the image is actually the keyword :) If the keyword is “puppy training” the best image to use is – puppy training.
How to add ALT tags in WordPress?
SEO alt tags images

SEO for links

There are two things I will tell you about this.
First, I want to say that this might not be considered on-page SEO but since it is on your blog, I will include it here.
Link to your post from other posts you have on your blog using your specific keyword. Also, use a synonym or similar keywords to link to the post, from time to time. Still, make most of your links, on your blog, link using anchor text that is your specific keyword.
Anchor text is the word that you link through to get to a post. Example would be: Learn what is a nofollow attribute. In this case “nofollow attribute” is the anchor text I used to link to a post about – nofollow attribute (good read for basic SEO, as well).
The second thing is something you might have never heard of. I learned it the first time I built a site and have been using it since. It might not help, but it sure looks like it is helping :)
Basically, lets say you have a website about dogs. Your main overall keyword is dog training. On your puppy training page, at the bottom, you will put a link saying “Go from puppy training to dog training home page” or “Go from puppy training to dog training”. And link to home page.
First of all you are putting the anchor text linking to the home page, hence giving the good anchor text link love to it. Then, you are not letting the visitor just click out but offering more links to check out.
Well, this is the main thing about the link – include your specific keyword in a link going out of the page. If you ask me why, I am not sure, but it seems to give the keyword strength to the page. I know this will be a topic of disagreements, but I am repeating, this is what I am doing and it helps me.
I am not doing it on this blog, though. Interesting observation is that the blog is not ranked as good as the sites I use this strategy on :)

Is this all?

Well, I did write down everything I think is important to know when writing a post and trying to optimize it for the search engines. This is SEO 101-  the ultimate guide for beginners so I tried to give as many details as I can. If I missed something, I hope you will ask a question about it.

Post bullseye

These simple steps are only a few minutes of your time when you write a post. Yes, they are simple. Read the post a time or two and it will all be clear. If you are not doing this, you will see a big difference when you start doing it.
Add some backlink building and you are on a roll.

Answers to your SEO questions

I sent out a newsletter yesterday, asking you to ask SEO questions so I can include them here. I got several of them, and here are the answers:
1. Eric from http://blog.thinkmarketact.com/ told me what he is doing regarding SEO and asked if there is anything I could add. Basically, I think I answered his questions here, if not, Eric, please ask more in the comments.
2. Jan asked “What’s the best sort of hosting for SEO?” Not sure I understood the question and what it has to do with SEO, but wild guess will be that the question is related to free and paid blogs. If I guessed right, the best thing to do is host your own blog.
3. Bill from http://billdorman.wordpress.com/ asked “How to get to the top of the stack as a non-commercial/part time blogger”. Bill, part time is what most bloggers are. If you want to rank for some words, the best thing is to move your blog to self hosted domain, choose a focus and start blogging when you have time. To get ranked you will have to do some SEO. If you want your current blog noticed, you started great, by connecting with other bloggers.
4. Sanjeev from http://sanjeev-sharma.com/ sent me an interesting observation:
“Barring the top few 100 or so sites, I find that in majority of the cases the pagerank and alexa ranks are completely out of sync – sites with high alexa ranks have low pagerank and sites with high page ranks have equally low alexa ranks. Also in the serach results, pages with lower pageranks show up before pages with higher page ranks. If that be so, why worry about PR and hence SEO? Why not put greater energy in the promotional activities. PR will in any case climb up with age.”
Doing SEO for ranking good in the search results is not the same as getting a PR. In the simplest words I can think of (cause this is a guide for beginners), you get PR because you are an authority, you have a lot of backlinks. You do SEO to be ranked in the search results page (not all is this simple, but this is an overview).
Alexa rank again, has nothing to do with PR or SEO, it is only counting the visitors. But there is one important thing about Alexa. It counts visitors with Alexa toolbar installed (or scripts running in the blog). So it is not the most perfect count…
I had more questions but they were not related to the SEO topic in this manner so I didn’t want to mix it all together :)
That’s it. Your SEO 101, the beginner’s ultimate guide for on-page SEO.
Hope you will like it. Hope you will share it. And hope you will vote for it using the shiny buttons on the left :)

25 Bloggers Not Giving Advice on Blogging | A Different Blog Interview



25 bloggers blog interviewBloggers are being interviewed all the time and somehow there are questions that are being asked over and over again. Sure, I want to learn some extra tips but I also want to get some good movie recommendation :)
So I decided to ask my favorite bloggers questions that will allow me to make a new “books to read” and “movies to watch” list. And just take a little step away from blogging and towards them as people.
Note: there is a song at the bottom you can play while reading this!
I asked them 5 questions:
  1. Favorite book?
  2. Favorite movie?
  3. Favorite music (or a band, singer, song…)?
  4. Favorite social media?
  5. Which blog you wish was yours?
Before you start reading, I want to say that I did not explain these questions at all (for example what I mean by number 5) so the answers are different from blogger to blogger.
Tia Peterson from Bizchickblogs:
  1. Live What You Love, Bob & Melinda Blanchard
  2. The Devil Wears Prada
  3. No favorites, really.
  4. Facebook
  5. So, so, tough. I usually do not covet things or wish they were mine. But if I have to give an answer, I’d say DivineCaroline.com or something similar :)
Lisa Irby from 2 Create a Website:
  1. The Power of Now by Eckhart Tolle
  2. The Color Purple
  3. En Vogue
  4. Facebook
  5. WebdesignerDepot.com – I just love their header! lol
Francisco Perez from Iblog zone:
  1. The Hunt For Red October – Tom Clancy
  2. Star Wars Series – All Of Them
  3. Addicted To Love – Robert Palmer, And everything Vivaldi
  4. Twitter
  5. Chris Brogan’s
Dino Dogan from DIY blogger:
  1. The Black Swan, Fooled by Randomness (both by Nassim Taleb), Outliers and the Tipping Point (both by Malcolm Gladwell), everything by AJ Jacobs (The Year of Living Biblically, My Life as an Experiment, The Know-It-All…), Way of The Peaceful Warrio by Dan Millman…way too many to list.
  2. 12 Monkeys, Pulp Fiction,  Fight Club.
  3. Zaz, Andrew Bird, No Smoking (Unza, Unza, Time!), Way, WAY too many to list…
  4. Twitter. I’m so over Facebook.
  5. I don’t have blog envy but I do have traffic/momentum envy. So, I’d take traffic and momentum of any of the top blogs if they’re transferring it.
Bill Dorman from Bill Dorman:
  1. I read a lot and it’s hard for me to remember a title so I’m going with a recent one that’s business related: Never eat alone by Keith Ferrazzi
  2. Field of Dreams (hands down best sports and father son movie ever; I lost my father about the time this came out).
  3. Linkin Park (I know, pretty scary………)
  4. Twitter, hands down.
  5. I will have to go with LifeforInstance w/ Lori Gosselin because it fits my style. I could jump right in the seat there.
Gini Dietrich from Spinsucks:
I can only choose ONE of each?!
  1. The Fountainhead, Ayn RandCrud.
  2. I don’t know.
  3. I love me the Pandora Glee station.
  4. Twitter. Duh.
  5. Yours! Um…I don’t know. I love a lot of them. Yours (for real), Ingrid’s, Danny’s, Marcus’s, Schaefer’s, Falchetto’s, Dino’s. It’s hard to choose just one.
Tristan Higbee from Blogging Bookshelf:
  1. Crime and Punishment. The least worthless class I took in college was a Russian literature class (yes, you read that right!). I’d lived in a couple former Soviet countries, had visited Russia, and could speak Russian, but had never read any real Russian literature. This book blew my mind.
  2. O Brother, Where Art Thou? It’s clever and hilarious.
  3. Radiohead is probably my favorite band right now, though I also love trashy music that is fun to dance to.
  4. Twitter. It’s short, sweet, and to the point. It’s also an incredibly powerful tool for driving traffic and building relationships.
  5. Oooo. Great question. The answer would probably change depending on the week you asked me, but now I’d have to say MatadorNetwork.com, which is the world’s largest independent travel magazine. The articles there are just really fun and unique.
Danny Brown from Danny Brown:
  1. How to Win Friends and Influence People by Dale Carnegie
  2. The Shawshank Redemption
  3. UK indie band Puressence
  4. Blogging
  5. Zen Habits
Stacey Herbert from My Lifestyle Max:
  1. S girls guide to fishing and hunting by Melissa Bank
  2. Toy story 1
  3. Marvin Gaye ( Here my dear album)
  4. Twitter
  5. Tinybuddha.com
Paul Wolfe from One Spoon at a Time:
  1. It’s impossible to choose one.  For non-fiction I’d have to go with The War of Art by Steven Pressfield.  Or The Writer’s Journey by Christopher Vogler.  For fiction I’m going to go with Philip Pullman’s trilogy (collected in one epic volumne!) His Dark Materials.
  2. My favourite movie is probably Serenity.  It’s got everything a great movie should have – great script, great acting, great directing, great music, epic sweep.  Very, very cool.
  3. I’m going to give you the name of a bass player you’ve never heard of, but you’ve undoubtedly heard his work.  His name is James Jamerson and he’s played on more number 1 hits than the Beatles, Elvis, Madonna, Mariah Carey and Michael Jackson combined.  I shit you not – and his name was James Jamerson.  He was an integral member of Motown’s studio band – The Funk Brothers – from 1962 to around 1971.  Just about everything Motown produced that went to No 1 had James on (think: The Supremes, The Four Tops, The Temptations, Martha & The Vandellas, Stevie Wonder, Marvin Gaye. And the list goes on.  And on.)
  4. My favourite social media is YouTube – earlier in the year I passed a million Youtube views.  The amount of traffic it sends is insane….get video right and you’re good to go.
  5. There’s no blog that I’d rather be (other than yours of course:))  Some days I wish for the traffic of Copyblogger or Problogger.  But the rest of the time I’m pretty happy with how One Spoon At A Time is going.
Ingrid Abboud from NittyGriddy:
  1. I don’t have one per say but I still love some of the ones I read in high school like “The Great Gatsby” and “The Scarlet Letter”. I’m also gonna’ be very cliche and say I actually enjoyed “The Da Vinci Code” a lot. The esotericism theme captivates me in general. I just bought “Social Intelligence” so you never know what my answer will be tomorrow ;) .
  2. Again, I have a few like “Dangerous Beauty”, “The Count of Monte Cristo”, “The Natural” and “Remember the Titans”.
  3. Favorite Music – Okay, so either I have no personality whatsoever – but we all know that isn’t true or I’m just plain indecisive. Yup, the latter ;) . One song that I do love is “Summer of 69″. I also love Depeche Mode, Robbie Williams, James Blunt and yes, the queen herself, Madonna! I listen to French music as well, but I don’t want to bore you lol. But if I must, I would say Charles Aznavour…
  4. Twitter!
  5. Hell, it’s already mine – nittyGriddy of course ;) ! But if I could just own another and sit back and watch it do it’s thing, it would be “The Huffington Post” – which of course I would rename “The Grid Post” ;) .
Janet Callaway from Janet Callaway:
  1. “Think and Grow Rich” by Napoleon Hill
  2. “Something’s Gotta Give”
  3. Neil Diamond
  4. Twitter
  5. Live-Your-Love.com–Really and truly, Brankica.  Love the look, feel, content and community of your blog.
Kiesha Easley from We Blog Better:
  1. My favorite book is The BluePrint: A Plan for Living Above Life’s Storms by Kirk Franklin.  It’s so uplifting and encouraging.  When my motivation wanes, all I need to do is read a section and I’m instantly re-energized.
  2. I have two all time favorite movies:  ”Love Jones” and “Jason’s Lyric”.
  3. One of my favorite song is “God in Me” by Mary Mary – this song is probably the most banging Contemporary Christian song you’ll ever hear with lots of bass!  Another song that I can listen to with out growing tired is Sweetest Taboo by Sade – I’m telling you that woman has a secret fountain of youth somewhere!  She looks the same as she did 30 years ago!
  4. I think of all the sites, I love Twitter the most.  I think it’s because of the brevity.  You can get so much in bite sized portions.
  5. This will probably sound cliche, but I really love Problogger, you just can’t deny the quality and I really admire the insights of Darren Rowse.
Kristi Hines from Kikolani:
  1. Zen Reflections by Robert Allen
  2. Tough. Almost anything with Angelina Jolie.
  3. Nine Inch Nails
  4. Flickr
  5. I love my blog and wouldn’t want anyone else’s!
Marcus Sheridan from The Sales Lion:
  1. Not even close on this one: Les Miserables. It’s the greatest story ever written about forgiveness, redemption, sacrifice, and love. It’s the type of book that makes you look deep within and want to be a better person. Plus, Hugo was a genius. I could literally spend hours analyzing every single paragraph of that man.
  2. OK, I’m going to get teased for this one, but who cares– Dirty Dancing. I grew up in 80s and I though Patrick Swayze was the coolest dude on the planet.
  3. Probably a 3-way tie— U2, Enya, Classical
  4. Blogging. Not even close.
  5. Seth Godin. (Nothing like having 100 word posts being retweeted 500 times ;-)
Patricia Millman from Lavender Uses:
  1. Usually whichever one I am reading at the moment.  Was always an avid reader but these days mainly read PDF on marketing, growing my business so my favourite book for the moment is the Action Guide that is teaching me heaps about building a business.  And more importantly showing me how to take action.  With the help of my mentor of course!
  2. Pride & Prejudice.  And as Colin Firth just won the Oscar for the King’s Speech, I reckon I could pick a good actor.  To me he will always be Mr Darcy.
  3. Being a child of the 60s there were so many good bands.  But the best of all time would have to be the Beatles.  And best of their songs Hey Jude.
  4. Twitter
  5. The one that I am building at the moment.  Cos if I chose someone else’s I would have to become them and I am very happy just being me.
Daniel Snyder from Info Carnivore:
  1. Blink by Malcolm Gladwell
  2. Back to the Future
  3. U2 every single album
  4. Twitter
  5. Iblogzone.com by DiTesco
John Garrett from Hypertransitory:
  1. “The Lions of al-Rassan” by Guy Gavriel Kay. Anything by GGK is stellar work. He usually works in the fantasy genre, but he researches different historical periods and cultures to build the world in which the story takes place. You always come away with a deeper understanding of the history of the real world. GGK can really make you care about those characters, too. At the end of this book I was trying hard not to cry like a punk BYATCH. Did I succeed? I’ll never tell.
  2. Believe it or not, it’s the movie Breakin’ from back in the 80′s. Man I loved those dances. I used to try to do them all them time when I was a kid. Oh, who am I kidding, I was still trying to do those dances LAST WEEK.
  3. I guess my favorite music would be old-school soul/funk and some r&b rap stuff. Sometimes it’s kind of shocking when I’m driving and bumping Earth Wind & Fire and then some 50 Cent rap song starts blasting right after it. G-G-G-G-G-G UNIT!!
  4. Any one in which I can get people to listen and pay attention to me. So right now I hate them all! No, seriously, though…for me Facebook is a lot more social and Twitter is where I actually learn a lot from the links I see posted.
  5. The blog I wish was mine would be Andrew Price’s Blender 3D training blog Blenderguru.com. The massive success of his blog just goes to show that if you put in the work on something you’re passionate about, you can truly build it into something special.I couldn’t pull that off though since I don’t have his level of Blender skill. When I post about Blender on my site it’s about how I *can’t* do something. If I posted about my Blender successes then I’d only have one post!
Alex Whalley from Alex Whalley:
  1. Bill Bryson – A short history of nearly everything (or any of his travel books for that matter).
  2. Shawshank Redemption
  3. Music is all over the place, proven by the fact that my favourite two artists are Queen and 2Pac (yeah go figure) I am also a huge fan of Michael Franti (with or without spearhead).
  4. Probably LinkedIn. I see more potential here than any other social media outlet.
  5. Problogger of course. Who wants to say no to a blog that runs itself and makes more in Adsense everyday than I make in an entire year through every income stream!!
Michele Welch from Newbizblogger:
  1. The Millionaire’s Secrets: Life Lessons in Wisdom and Wealth by Mark Fisher of course! :)
  2. The Matrix – don’t laugh.
  3. Jay Z and Alicia Keys Empire State of Mind – yea, yea!
  4. Go Twitter go!
  5. Tough one but I would have to say it’s between InOverYourHead.net and SocialMediaExaminer.com. Damn they are good. ;-)
Davina K. Brewer from 3 Hats Communications:
  1. Don’t have. Enjoyed a lot of Anne Rice back in the day, some John Grisham too. How ‘bout comics, like Dilbert and Calvin and Hobbes?
  2. No way to pick just one. I’ll give a list that people might not expect. I love classics like GWTW, Casablanca, Cat on a Hot Tin Roof. Like everything from action to comedy to drama to scifi, but less a fan of the chick flick. See… Matrix, Fight Club, The Blind Side, War of the Roses, Hangover, Firefly/Serenity, Iron Man.. Just looking randomly at DVDs.
  3. Mostly strummy alt rock like Lifehouse, Trading Yesterday, Safetysuit, Florence and the Machine, but really my iPod has a little of EVERYTHING. :-)
  4. Blogging first with Twitter a close 2nd. Guessing you mean SM network or tool or platform.
  5. Great question! Gini’s for the fame. Mark Schaefer’s for the fortune. Marcus’ for the community. Danny’s for the Zen. Erika’s (Redhead) for the bite. Ingrid’s for the yowza. IDK.. I like my little blog, think I’m taking a page from everyone.
Elise Moreau from Elise’s Review:
  1. My favorite book is probably “Life of Pi” by Yann Martel. I read it in high school and it reminded me a lot of the story from “The Old Man and the Sea,” which I loved as a child. The book has a fantastic ending and the story is very meaningful and conveys some really important life lessons.
  2. I think it has to be The Little Mermaid or the Lion King. Don’t laugh! I love Disney! :)
  3. I like all music, but I’ve always really loved rock and grunge. Is that weird? I’m a big fan of the Foo Fighters, the Red Hot Chili Peppers, and Incubus. And being a pianist, I also love classical piano.
  4. YouTube! I’ve basically thrown out television entirely for my YouTube subscriptions, and I got to meet a couple YouTube celebrities last year when they visited my city. There’s a huge potential for community on YouTube and a lot of the people I watch are huge inspirations to me.
  5. I guess I’d say TechCrunch. I think it’s my favourite blog to read. I’m a sucker for tech news, even though I’m not exactly the most technologically savvy person. The comments are also hilarious to read and very insightful. There are some smart people on that blog!
John Falchetto from Expat Life Coach:
  1. Hard to pick one but since I have to Le Petit Prince by St Exupery
  2. Apocalypse Now
  3. Queen , best song Bohemian Rapsody fist song to mix rock and opera But I have to also say Eminem
  4. Twitter
  5. Danny Brown
Marlee Ward from Marlee Ward:
You can quote me in saying this is the hardest interview I’ve ever done. I’m a person who LOVES options, so I don’t think I gave you a single straight response!
  1. That’s a tie between Mere Christianity by C.S. Lewis and Crime & Punishment by Fyodor Dostoyevsky (go figure!)
  2. The Bourne Triology
  3. I have an unrelenting level of music appreciation so this is borderline torture to answer. If The Roots, Rage Against The Machine, Outkast, Paul van Dyk, Phish, Bob Marley, Sublime, Metallica, Brooke Fraiser, and Lady Gaga formed a band I’d pick them. ;)
  4. Blogs. You get both interaction and insight.
  5. I wouldn’t wish for any one particular blog, but I’d gladly take the biz model behind the likes of a blog like Chris Brogan’s. Hey Chris! I’m available if your looking for a successor, lol. ;)
There were several comments in these responses asking if I will answer these questions, so why not:
  1. The Pillars of The Earth by Ken Follett
  2. “Man on Fire”, “Tropa de Elite”, “300″, both “Sex and The City”
  3. So many different ones, a lot of Serbian music and RnB, House, etc.
  4. Personally Facebook, business wise Twitter.
  5. Lisa Irby’s, because her stuff overall rocks!
I want to say THANKS to all and I am sure all people on this list know how much I appreciate them and love them!
Here is one of the songs that was listed here that I adore :)

Human spammer | How to lose reputation as a blogger and get banned the easy way

This post feels a bit unusual to me since I am not a person that get’s on people’s bad sides. I am considered pretty friendly in my environment and I try to be the same in blogosphere. But we all have our opinions and feelings and why not be open about it.
This post is showing, on a very simple example, how to annoy a fellow blogger and get banned from a blog. The easy way.
We all receive spam comments and fight them with different plugins. I stopped using Akismet and installed Growmap Anti Spambot Plugin that does a great job of fighting those bots. But there is a worse thing than a bot – a human spammer.
This post is about Mr. Praveen from techperk.com (no, I am not even gonna link to his blog).
Since I’ve started this blog I received three comments from him. Unfortunately, I didn’t think I would be writing this post so I deleted one way back (it was the second one).
The first comment said: “Very good collections listed out here, i love the 2nd and 4th actually. good job.. go ahead Retweeted” and it was on one of my list posts.
I checked out his blog (at this moment Alexa 37.500, Google PR 2), approved the comment and wanted to check out his Twitter.
Now, as a new blogger, I love checking out how numbers grow on my posts, you know, how many times was the post retweeted, if anyone digged it, etc.
So I am on his Twitter and I see he did not RT the post. I have no problem with people not RTing my posts, but why would he write he did!?
And here is the most interesting thing. I Googled his comment (thanks for the suggestion @mrBenWan) and here is what I came up with:
Human spammer
This is all I could catch with the Print Screen option on my computer. There are some of my favorite blogs in the search results as well, like hectorjcuevas.com and his post 4 awesome online brands and bloggingbookshelf.com with his How to create the perfect blog footer.
There are exactly 24 same comments in Google results!!!
The second comment (the one I deleted) was along the same lines, again saying he retweeted my post. So I checked it and guess what, he didn’t! I started to realize what is going on so I deleted the comment. Sorry, spammer.
And 2 days ago, here he comes again, and posts his third comment: “Hey, nice and a very good piece of share. I like the way this has been crafted. Keep up the great work. promoted the post.. Thanks“. You can see it at my Blogging tribes post.
Promoted the post! Rings a bell, doesn’t it! No, he did not promote it. As I said, no problem, you don’t have to and I will still love you. But don’t say you did.
So I Google him again. He posted the same comment on 12 blogs:
Spam blog comments
Just a part of the search results
Some of you that comment here will find your blogs on the list.

What did I do about this human spammer?

I removed his Comment Luv links and I will not be approving his comments any more.
There is a commenting policy on my blog and it is there for a reason.
You know, you can see some short comments on my blog. I don’t mind them when they are coming from regular readers. I understand that you don’t have the time to spend hours on my blog commenting. And I am OK with that.
I am even OK if from time to time, you are commenting just for a link. I understand it.
But this is  my blog! Don’t come to my house and show no respect.
I was surprised at his blog’s numbers (Alexa and Google) but I guess everything is possible in this world. However, I was told that his blog might be an auto-blog.
So, I don’t want to keep you here any longer but I would love to hear your opinion on this.
  • Do you have his comments on your blog?
  • Is this something you don’t care about or does it annoy you?
  • Do you think his blog is real or it could be an auto-blog?


UPDATE:
I got a comment from Praveen.

I am copying it here. He was kind enough to include Comment Luv link to his comment and since for what ever reason the removal link is not there I am just pasting the text. No links from me, Praveen and thanks for the comment.
“Hi All
First of all thank you the blog owner for spending your time and writing a post on it.
I never have time to comment on any of your blogs as i am not a pro-blogger, i have a 2 member team to approve and write comments on other blogs. I have received same kind of complaints from few others too but never took it seriously. This time i got an e-mail from this blog owner so that is the reason why came here to comment.
I never know the 2 guys are using same kind of comments to fill all your blogs. I will ensure that this will never ever happen in any of the blogs found in the blogosphere.
Sorry for the inconvenience caused
Thanks”

And here is what I have to say:

First of all, Praveen, I do have a name. It is written all over the post. And my name is not “blog owner”.
If you don’t have the time to comment, why do you? Why do you have 2 people getting links for you and signing your name? How are we supposed to create a connection with you when you actually never read any of our posts and never comment on any of them?
If you have received complaints before don’t you think it is utterly unprofessional that you never took time to see what is going on? Does this mean that you don’t care what people have to say?
You say you got an e-mail from this blog owner and came here to comment. I understand that English is not your native language, it isn’t mine either, so I don’t really understand. I didn’t send you any e-mails. Does this mean that you call everyone that has a blog “blog owner”?
I can not believe that you would run a business and not know what your friends/employees do! Again, very unprofessional.
I guess it is not your fault!?!?
I am not completely convinced you are sorry so I will stick with my opinion of not approving your comments any more. I guess you have so many links already that you don’t need mine.
And since you are not reading the posts and making comments, I see no need to see your links all over my blog.
Thank you one more time for responding to my post, I would have thought that you would present your case a bit better. I am sure people will find it in their hearts to re-approve all of your comments, now that they know you don’t read our blogs because you are too busy!
Brankica, the blog owner


SECOND UPDATE:

After this I got an e-mail. He wants me to do a screenshot and post it here. One note to you, you can’t tell me what to do on my blog!!!
And then another comment:
Hi Miss. Brankica
lol, thanks a lot for posting my comment here, i got this link from [link removed so bots don't pick it up] so i am not sure it is you or someone.
I do not have 4 hands to do all these, and i am not fully into blogging like others or you. I have some other work, i love blogging so i will spend time whenever i get and post comments personally in big sites. definitely not on your site, you will understand why i use those 2 when you grow in blogging but stop doing all these to grow. I definitely read all the useful blog posts in very good sites and leave my comments, so you need not teach me. lol
I can truly understand that your a newbie so very much excited about and tries to find something to write. I have not posted this with my link becuase i do not want your precious links :)
I will make sure that this type of commenting will not happen again in any of the other blogs. I will also ensure that myself or any of my workers to post GENUINE comments on your blog, becuase i do not want you to waste your link :)
If you say you are a good blogger then update the post with the screen of the mail i sent through your comment form. Please dont speak about Business ethics without doing this, and also you must have intimated me about this as someone has said in your comments. This is definitely not a professional way for an ENGLISH BLOGGER :)
I will definitely post about this and call you as a spammer who is trying to make money and people by blogging about others. Since you have called me so, do you know that? How many days you are into this? First learn how to call people and then do blogging.
PLEASE TRY TO REPLY TO PEOPLE IN A GOOD WAY TO GET A GOOD REPLY
Thanks
I guess it was the time for him to start insulting :)
You can comment as much as you want, you are not helping yourself.
If this is a small blog why did you bother in the first place? If this is a small blog, why are you sending these comments, you should not care!
You will NOT post GENUINE comments on my blog, as you say, because my small blog doesn’t need your comments.
Feel free to post this thing you are “threatening” me with: “I will definitely post about this and call you as a spammer who is trying to make money and people by blogging about others.” Just before you do, make sure you have your case right. You will need to prove that I am a spammer and that this blog is created to make money :) Do you see ads here? Google AdSense? And do you think I really care what you are going to post here? This is not my business, I have a job, this is just fun.
Bottom line, this is the last thing you sent and I published on my blog. I just needed to show people what you have sent me. This second comment of yours was so much “more professional”!
Have a great 2011. Praveen and it was great having you here! I have never received as many comments, you are the best :)

Make more money with Google Adsense | Simple trick explained



make money online 
After the Google Adsense post the other day and explaining some of my settings and strategies, I thought one tip I mentioned should be given more explanation.
This little tweak can improve your earnings significantly so it is something to keep in mind when you plan your monetization with Adsense.
I kinda only mentioned it, but I did get several questions about it via e-mail. I think it would only be fair to explain the strategy a bit more.
I mentioned that if you want to make more money with Adsense, you should have less ads. Yeah, sound crazy, I know. But it works.
There is one important number in Adsense which we will revolve around in this post – CTR, the famous Click Through Rate.
Ad CTR = Clicks / Ad impressions
The higher the CTR the better your pages are performing. High CTR means that a large percentage of people are clicking on your ads (in simple words).
Now I am getting to the point of the post… Every advertiser wants their ad to bring traffic, so he wants more clicks. Obviously, pages with high CTR are getting more clicks and advertisers want to see their ads on those pages.
They “compete” to put their ad on a high CTR page. If you have one of those, you will get better, higher paid ads on your page. Higher paid ads bring more money.

How to increase your CTR?

By using all the tips about placement, colors and sizes (and everything else) from the previous post - Money From Google Adsense. But that is only the start.
The next thing you need to do is – remove ads from some pages. You will remove the ads from all pages that have low CTR.

How to find pages with low CTR?

The best thing you can do for your blog/site is to track everything using free Google tools. That includes Adsense and Analytics. So to track your efforts easy, connect your Adsense account to your Analytics account (this link should help you).
That way, you can see exactly which pages have low CTR. No need for some complicated settings, it is there in plain view.
Make sure you have something to look at, like stats from last 3 months or something similar. Looking at stats from the last week is not a good starting point, you need more data.

Once you have all your pages in front of you, you need to choose which are the ones with lowest CTR. Don’t look at the ones with only a few clicks if their traffic is low as well. Low traffic and few clicks usually mean average CTR.
What you need are the pages that don’t perform well.
First, determine which pages have the best CTR. See if there is a group of such pages.
For example, when I did this on my site, I tested about 45 pages that had Adsense on them. I found 10 that performed really well, with CTR about 3%. About 25 of them had CTR anywhere from 1.5% to 3%. But I had 11 pages that had CTR below 1%.
So this should be your guide. Find pages that have CTR significantly lower than the majority of them.
Track the traffic the page is receiving. If you have a page that gets 2.000 visits but CTR is 0.5%, you are not doing great. Maybe you can monetize that page much better!? It is obviously not working with Adsense.

What to do when you find low CTR pages?

I removed Adsense from all of those 11 pages. So overall, my CTR went up. (I did this such a long time ago, I wish I had the screenshots to show you the differences, you would be amazed).
As soon as I did this, I am talking after a day or two, I started getting more money from a single click. That means that the ads delivered to my site were more expensive.
So, simply remove ads from pages that don’t perform well!

What do you need to get this to work to the max?

You need to have a topic focused site. That way Google will deliver very targeted ads. Targeted ads mean more clicks.
Keyword focused pages. Yes, every page should have one keyword to focus on (these are basics of SEO).
Connected Adsense and Analytics accounts for tracking purposes.
Previous tested: best colors for ads, best sizes, best placements.
Certain amount of time to determine which pages have good CTR and which don’t.
A lot of tracking and testing.
Delete and “throw away” everything that is not working.

Extra tips and tricks for making money with Adsense

Lower your page bounce rates. If they are high, the problem might not be the ads themselves. What might be happening is that people are clicking the back button before even having the chance to click on the ads.
Find the best paying keywords using Google Keyword Tools and put them in the paragraphs above and below the ad units (but only if they make sense in the text). That usually pulls up even better targeted ads.
I hope this explained the tactics I mentioned the last time a bit better. Talk to me and share the post :)

Dec 2, 2011

How to Setup Blogger Custom Domain which is Purchased from Godaddy?

Are you converting a blogspot blog to Custom domain? Don’t you know how to do it? Don’t worry! Blogger will help you to set up custom domain automatically if you purchased the domain via Blogger.com. But, if you’ve purchased the domain from third-party domain registrars, you need to set up the custom domain manually. Here is a step by step instructions if you want to do it manually.
1. Log into your Blogger Account -> Settings Tab -> Publishing Tab.
2. Click on “Switch to Custom Domain”.
3. Now,Click on “Switch to advanced settings”.
4. Enter your domain {Ex:techzene.com}-> Enter the Word Verification and Click Save Settings
5. On the next page,Check the box “Redirect techzene.com to www.techzene.com” -> Enter Word Verification -> Save Settings.Now,you will be shown “Congratulations, your blog is ready!”
Blogger Custom Domain setup using godaddy account
6. Now,Log into your GoDaddy Account & Go to Domains -> My Domains{Domain Manager}.
7. Click on your Sitename & Open Nameservers Link.
8. Enter “NS09.DOMAINCONTROL.COM” for Nameserver 1 and “NS10.DOMAINCONTROL.COM” for nameserver 2. Make sure, you selected custom nameservers.
nameservers for blogger hosting
9. Now, click on Total DNS Control and MX Records.
10. Delete the existing A records if any (the ones at the top)
11. Click on “Add New A Record”.
12. Enter the details as shown in below figure & Click OK.
how to change dns settings for custom domain
13. Delete the CNAME that has a Host of www
14. Click Add New CNAME Record
15. Put www in the Enter an Alias Name field, ghs.google.com in the Points to Host Name field and leave the TTL as 1 Hour. Click on OK.
creating cname for blogger domain
NOTE : The changes will reflect withing an hour. This is completely what i did for my Technology Blog & it worked successfully.
The process will be similar even if you purchased your domain with other domain registrars.
For any queries, Do Comment!!!
eXpertise Blogging 4U © 2011. Design by :Yanku Templates Edited by : Alif KecilSponsored by: Tutorial87 Commentcute