Custom Search
Ads by VADpay advertising

Google Adsense for Vietnames Headline Animator

Showing posts with label Tips for Bloggers. Show all posts
Showing posts with label Tips for Bloggers. Show all posts

Thursday, September 25, 2008

2 methods to display "Related Posts"

I would like to display "Related Posts" for all labels of my blog. Therefore, I have search from internet, and there are two interesting methods made by PurpleMoggy and Hoctro. Now I am using both of them for my two blogs: one is here, and the other is in http://easyadsense4vn.blogspot.com/. They work well. So I should recommend them to those who did not know about this widget.

First is the method of Hoctro:

Before you could install this hack:

To make this hack working, make sure you turn your "feeds" on. The setting is set to "on" in your blog by default.

Make sure your feed settings look like this (short or full):



and not like this:



Also, make sure in "Settings"->"Archiving", "Enable Post Pages?" is set to "Yes"




To install this hack, first follow the instructions from this article Hacking Technique: How To Modify and add Widget to the Template, in particular section B.4.

Then, cut this code below and paste it in between any two "b:widget" tags, save the template, and you're done!


<b:widget id='Blog3' locked='false' title='Blog Posts' type='Blog'>
<b:includable id='comments' var='post'>
</b:includable>
<b:includable id='postQuickEdit' var='post'>
</b:includable>
<b:includable id='main'>
<!-- *****************http://hoctro.blogspot.com*****Sep,2008********** -->
<!-- ***Related Articles by Labels Written by Hoctro- Take Three******* -->
<!--<b:if cond='data:blog.pageType == "item"'>-->
<div class='widget-content'>
<h3>Related Posts</h3>
<div id='data2007'/><br/><br/>
<div id='hoctro'>Widget by <u><a href='http://hoctro.blogspot.com'>Hoctro</a>

</u></div>
<script type='text/javascript'>


// Incorporating modified by Jackbook to the next line, thank you very much.
var homeUrl3 = "<data:blog.homepageUrl />";
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 10;

<b:if cond='data:blog.pageType == "item"'>
maxNumberOfPostsPerLabel = 100;
</b:if>
<b:if cond='data:blog.pageType == "item"'>
maxNumberOfLabels = 3;
</b:if>


function listEntries10(json) {
var ul = document.createElement('ul');
var maxPosts = (json.feed.entry.length &lt;= maxNumberOfPostsPerLabel) ?
json.feed.entry.length : maxNumberOfPostsPerLabel;
for (var i = 0; i &lt; maxPosts; i++) {
var entry = json.feed.entry[i];
var alturl;

for (var k = 0; k &lt; entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
alturl = entry.link[k].href;
break;
}
}
var li = document.createElement('li');
var a = document.createElement('a');
a.href = alturl;

// Adding an if statement to exclude current post. Addition from Jackbook.com. Thank you
if(a.href!=location.href ) {
var txt = document.createTextNode(entry.title.$t);
a.appendChild(txt);
li.appendChild(a);
ul.appendChild(li);
}
}

for (var l = 0; l &lt; json.feed.link.length; l++) {
if (json.feed.link[l].rel == 'alternate') {
var raw = json.feed.link[l].href;
var div1 = document.createElement('div');
div1.appendChild(ul);
document.getElementById('data2007').appendChild(div1);
}
}
}

function search10(query, label) {

var script = document.createElement('script');
script.setAttribute('src', query + 'feeds/posts/default/-/'
+ encodeURIComponent(label) +
'?alt=json-in-script&amp;callback=listEntries10');
script.setAttribute('type', 'text/javascript');
document.documentElement.firstChild.appendChild(script);
}

var labelArray = new Array();
var numLabel = 0;

<b:loop values='data:posts' var='post'>
<b:loop values='data:post.labels' var='label'>
textLabel = "<data:label.name/>";

var test = 0;
for (var i = 0; i &lt; labelArray.length; i++)
if (labelArray[i] == textLabel) test = 1;
if (test == 0) {
labelArray.push(textLabel);
var maxLabels = (labelArray.length &lt;= maxNumberOfLabels) ?
labelArray.length : maxNumberOfLabels;

if (numLabel &lt; maxLabels) {
search10(homeUrl3, textLabel);
numLabel++;
}
}
</b:loop>
</b:loop>
</script>
</div>
<!--</b:if>-->
</b:includable>
<b:includable id='backlinkDeleteIcon' var='backlink'>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
</b:includable>
<b:includable id='backlinks' var='post'>
</b:includable>
<b:includable id='status-message'>
</b:includable>
<b:includable id='feedLinks'>
</b:includable>
<b:includable id='nextprev'>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
</b:includable>
<b:includable id='post' var='post'>
</b:includable>
</b:widget>




Important features & notes:

1. To set the maximum of headlines per label, change the number on this line (right now it's 4.)

var maxNumberOfPostsPerLabel = 4;


2. To set the maximum of labels, change the number on this line (right now it's 10.)

var maxNumberOfLabels = 10;

My experience using Labels is that you should try to minimize down each post to just two labels only, then in conjunction with the maxNumberOfPostsPerLabel you will get your list to look more effective.

3. To show the widget only on item page.

If you do not want to have the widget on the front page, since you might have a front page with many posts, then change this line (in bold) at around the front of the widget:

<!-- *****************http://hoctro.blogspot.com*****Sep,2008********** -->
<!-- ***Related Articles by Labels Written by Hoctro- Take Three******* -->
<!--<b:if cond='data:blog.pageType == "item"'>-->


to become:

<b:if cond='data:blog.pageType == "item"'>

and also at about two-third of the widget, from:

<!--</b:if>-->

to,

</b:if>

4. To limit the space of the widget

Sometimes there might be lots of headlines and taking lots of spaces, but in the mean time you want to list as many related articles as possible. I recomment you to turn the widget into a box, a CSS feature I recently used in the "TOC Widget".

To do so, look for this line (located at the front of the widget):

<div id='data2007'/><br/><br/>

then add CSS styles to it:

<div id='data2007' style='height:200px;overflow:auto;border:1px solid brown'/><br/><br/>

The styles I use are the height of the widget (200px) and to turn it into overflow mode so the long headlines don't get lost at the end of the box. I also draw a thin solid brown border. The are just examples of what you could do.

Now I show you the method of PurpleMoggy:

First of all, go to Template -> Edit HTML and paste the following into the page header:

<script type="text/javascript">
//<![CDATA[
var relatedTitles = new Array();
var relatedTitlesNum = 0;
var relatedUrls = new Array();
function related_results_labels(json) {
for (var i = 0; i < json.feed.entry.length; i++) {
var entry = json.feed.entry[i];
relatedTitles[relatedTitlesNum] = entry.title.$t;
for (var k = 0; k < entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
relatedUrls[relatedTitlesNum] = entry.link[k].href;
relatedTitlesNum++;
break;
}
}
}
}
function removeRelatedDuplicates() {
var tmp = new Array(0);
var tmp2 = new Array(0);
for(var i = 0; i < relatedUrls.length; i++) {
if(!contains(tmp, relatedUrls[i])) {
tmp.length += 1;
tmp[tmp.length - 1] = relatedUrls[i];
tmp2.length += 1;
tmp2[tmp2.length - 1] = relatedTitles[i];
}
}
relatedTitles = tmp2;
relatedUrls = tmp;
}
function contains(a, e) {
for(var j = 0; j < a.length; j++) if (a[j]==e) return true;
return false;
}
function printRelatedLabels() {
var r = Math.floor((relatedTitles.length - 1) * Math.random());
var i = 0;
document.write('<ul>');
while (i < relatedTitles.length && i < 20) {
document.write('<li><a href="' + relatedUrls[r] + '">' + relatedTitles[r] + '</a></li>');
if (r < relatedTitles.length - 1) {
r++;
} else {
r = 0;
}
i++;
}
document.write('</ul>');
}
//]]>
</script>

Save it, and then click the Expand Widget Template checkbox. Scroll down to the blog1 widget, and find the following:
        <b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != "true"'>,</b:if>
</b:loop>
</b:if>

It'll probably be down in the post-footer-line section (whether that be line-1, -2, or -3)

Change that to:
        <b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != "true"'>,</b:if>
<b:if cond='data:blog.pageType == "item"'>
<script expr:src='"/feeds/posts/default/-/" + data:label.name + "?alt=json-in-script&amp;callback=related_results_labels&amp;max-results=10"' type='text/javascript'/>
</b:if>

</b:loop>
</b:if>
The 3 lines in bold are what I added ;)

Save it, and now go to Template -> Page Elements and add a new HTML/Javascript widget. I added mine underneath the main blog posts widget. You'll need to add it after (in the page) the above codebox for it to work correctly. Paste the following into it:
<script type="text/javascript">
removeRelatedDuplicates();
printRelatedLabels();
</script>
Now go back to Template -> Edit HTML, check the checkbox to expand the template code, and find the HTML/Javascript widget you just added. It'll look something like the following. Add the lines in bold:
<b:widget id='HTML13' locked='false' title='Related Posts' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>

<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
There's a few numbers you can tweak to show more or less related posts. In the first codebox there's a part that says i < 20 and the 3rd codebox has a part that says max-results=10. You can play around with these numbers if you want. After playing around a little these numbers seem to give a good trade-off between the speed of page-load and the number of related posts displayed.

I wish you can do it successfully.
-->Read the full post...

Tuesday, September 23, 2008

How to display "Popular Pages Today" and "Most Viewed Posts"?

Together with the post How to display "Recent Comments" for your blog just in 1 minute?, in this post I shall show you how to show your "Most Viewed Posts" (without days) and your "Popular Pages Today". These are important for your visitors to regconize the most interesting contents in your Blog. Thanks AnhVo for writing the code for "Most Viewed Posts".

First, to show your "Most Viewed Posts", you add the following code at anywhere you would like to display it:

<script type="text/javascript">
start_views_num = 500;
limit = 7;
</script>
<script src="http://www33.websamba.com/anhvosite/blogger/js/topviews222.js" type="text/javascript"></script>

Note that, you should replace two parameters start_views_num and limit by the least viewed number of posts and the limited number of posts you would like to display, respectively.

Now I shall show you how to display "Popular Pages Today", using FEEDJIT. First, you visit the homepage of FEEDJIT. There are 4 interesting widgets served by FEEDJIT: LIVE TRAFFIC FEED, LIVE TRAFFIC MAP, LIVE RECOMMENDED READING, and LIVE PAGE POPULARITY. Here we are interested in showing "Popular Pages Today", so I recommend you using the widget LIVE PAGE POPULARITY. You just need to click into ADD IT!, one new window appears, you should copy the code and paste in your HTML source at anywhere you would like to display it!

Moreover, if you are using Blogspot or TypePad, it is easier for you to add this widget directly. You are still standing in this new Window, you just choose Blogger or TypePad, choose your blog, choose the title to displace, and finally, you click into ADD WIDGET. You should save your setting, and now you may return to your homepage to see your "Popular Pages Today".

I hope this post can help you avoiding a headache!

-->Read the full post...

Top 25 Blogs About Blogging

The “Top 25 Blogs About Blogging” list ranks blogs according to their Google Pagerank, Alexa rank, number of Bloglines subscribers and Technorati authority.

Each of the four factors range from 0 to 10, where 10 is the best score. The maximum total score for each blog, therefore, is 40. There will be monthly updates. Below the table you will find the details about the algorithm (check also the Top 25 SEO Blogs).



#1 Problogger 6 10 10 10 36
#2 Copyblogger 6 9 10 10 35
#3 John Chow 6 10 6 10 32
#4 Quick Online Tips 6 8 10 6 30
#5 Daily Blog Tips 5 8 7 9 29
#6 Lorelle on Wordpress 6 8 6 9 29
#7 Dosh Dosh 4 9 5 9 27
#8 Performancing 7 8 1 10 26
#9 Weblog Tools Collection 6 9 5 6 26
#10 Blog Herald 6 7 4 9 26
#11 Blogging Pro 6 7 4 8 25
#12 Successful-Blog 6 6 4 8 24
#13 JohnTP 6 8 3 7 24
#14 Engtech 6 6 2 7 21
#15 Bloggers Blog 6 3 6 5 20
#16 Andy Beard 5 7 2 6 20
#17 ChrisG 5 6 4 4 19
#18 Converstations 5 3 5 6 19
#19 The Wrong Advices 5 4 1 5 15
#20 Business Blog Wire 6 2 2 4 14
#21 Alister Cameron 5 4 1 4 14
#22 Blog About Your Blog 4 5 1 4 14
#23 Blogtrepreneur 5 3 1 4 13
#24 I Help You Blog 4 3 2 2 12
#25 Build A Better Blog 6 1 3 1 11




Blogs considered: the list considers only blogs that have a high percentage of blogging-related content. Topics might range from blogging tips to monetization, from news to building communities or business blogs.

Google Pagerank (0 to 10): the actual Pagerank was used on the algorithm.

Alexa Rank (0 to 10): Ranges were determined based on the Alexa Rank (i.e., 150k and up, 150k-100k, 100k-75k, 75k-50k) and each range was assigned a number (1 to 10).

Bloglines Subscribers (0 to 10): Subscriber ranges were determined (i.e., 1-50, 50-100, 100-150, 150-200) and each range was assigned a number (1 to 10).

Technorati Authority (0 to 10): Ranges were determined based on Technorati’s Authority rank(i.e., 1-100, 100-200, 200-400,400-600) and each range was assigned a number (1 to 10).

(By: Dailyblogtips)

-->Read the full post...

Thursday, September 18, 2008

5 programs help you to increase the blog traffic quickly!

If you visited my blog yesterday, you did not see an icon with a big and nice letter "E" together with the word "Drop", and you did not see the icon of BlogRush in my blog. These are two of programs what I would like to recommend you today in order to increase the traffic of your Website. Many people use these programs to solve the traffic problem. A common principle of these programs is that, bloggers advertise together and exchange the traffic. These are BlogRush, Spottt, EntreCard, AdgridWork and AdsFlip.

1. BlogRush

BlogRush is a free service that was created to help bloggers solve their #1 need: More Readers For Their Blog.

By adding the BlogRush Widget to a blog, a blogger can get instant distribution for their latest blog post titles across a network of related blogs.

BlogRush is a "Cooperative Syndication Network." It's a network of blogs that run a small "widget" on their pages. Each time this widget is loaded it will contain 5 clickable headlines which are the blog post titles to other users' posts. Clicking on any of these links will open a new browser window and load the blog and full post. Users earn "syndication credits" based on each time their blog loads the widget as well as each time any of their referrals (users that signup after clicking the "add your blog posts" link on the widget) loads the widget. They also earn additional credit based on all the activity through 10 generations of referrals. 1 Syndication Credit = having one of their recent blog post titles served inside the widget on another member's blog.

Syndication credits are earned based on the following formula: You earn credits on your own traffic using a 1:1 ratio. (One credit for each time the widget is served.) You then earn credits based on your referrals traffic (and their referrals traffic) through 10 generations of referrals based on the following ratios: 1st and 2nd generation (i.e. your direct referrals and their direct referrals) 1:1, 3rd - 6th generation = 1:4 ratio, 7th - 10th generation = 1:8 ratio. After all the math is calculated, there is a surplus of 1 headline space (5 spaces in each widget load) for every 10 that are served. So 10% of all the headline space is reserved for BlogRush itself to sell or use.

You can read FAQ for more questions!

2. Entrecard
Entrecard is your business card 2.0. It's a 125x125 image which represents you and your blog. Its part advertisement, part business card. It comes with a widget you place on your blog, so that others can leave their Entrecard for you. You can also use Entrecard to promote your blog and launch free advertising campaigns.

You can use Entrecard to launch advertising campaigns where you run your 125x125 Entrecard on someone else's widget, which would link through to your site. This is the equivalent of your standard 125x125 advertisement, except it is run on a day-to-day basis instead of a monthly basis, and you pay with credits instead of dollars.

The going rate is equal to twice the average number of cards received through the widget daily over the last five days. So, if a blog receives 100 cards on average per day, it costs 200 credits to advertise on their blog. This helps ensure that the economy balances. It also means that for every two credits you spend, a unique user will see your ad and be clicking in the vicinity.

For more details, you can read FAQ.

3. Spottt - Free Link Exchange:
Spottt makes free advertising available to everyone on the Internet.

The concept is simple: by joining, members agree to display ads for other members. It's automated, and uses a small snippet of HTML inserted into any web page. The amount of free advertising members receive is directly proportional to the amount they give to others.

Three easy steps you should do to join in Spottt:

  • Register for a free account
  • Upload your 125x125 graphical ad
  • Embed the HTML code into your website
Every time your site shows someone else's ad, you earn 3 credits. When you earn 4 credits, your ad will be shown on someone else's site once. You can log in at any time to check your current balance.

You can add up to 10 different websites per account. To add a new site, log in and click "Create a new Spottt."

Spottt is a free service from the people at AdBrite.

4. AdsFlip - Free Advertising Network:

AdsFlip is the latest most easiest and fastest way to market your website. Newly launched in 2008, one of AdsFlips main target is to help users promote their website and allow users to publish their adverts across our AdsFlip network for absolutely free.

AdsFlip is an advert sharing network where users can register an account for free and share their adverts across websites on the network. The adverts are displayed as text or image in a banner form. In return, by displaying adverts on other websites, the user accepts and advertises other banners from the network on his website.

Many website owners can benefit from AdsFlips free service. With its easy-to-use, user friendly interface, users can promote their website banner on thousands of websites with a click of a button. Advertising has never been this easy.

Best of all, the users will receive the right kind of traffic for their website, as the adverts will only be marketed on websites with similar content to theirs. Although undergoing major improvements, AdsFlip is programmed to recognise a websites content and can determine the right category for it.

With AdsFlips advanced scripting which updates all information instantly, you’ll save a lot of time and you’ll be able to reach a very large targeted audience on our network.


While registering for an AdsFlip account, you will be provided with an HTML Code which you simply paste on to your HTML of your website; this code is called the AdsFlip Banner.

Once pasted our AdsFlip robot crawls the website and determines which category the website should be listed under. It examines the overall content of the website; using algorithms, it extracts information such as titles, sentences, paragraphs, website layout and keywords. Once AdsFlip works out the relevant category for the website, the users will be ready to start advertising and receive adverts.

Welcome to the fastest and easiest way to expose your website.

Welcome to AdsFlip.

5.
AdgridWork - A Free Online Advertising Network:

To register for adgridwork, all you need is a valid email address and a password of your choice. Go to our Registration page and enter the three required fields. You can only register with your email address once, but can add as many websites as you would like from that single address.

After you register, you will be taken to your Account Manager (the page with 'Site Summary' at the top). From there, you need to Add a Website to the Network. By Adding Your Site, you are basically letting our system know that you plan on serving ads on your website and want your own advertisement (which you will create using the Site Submission form) displayed on others. If you are currently logged in, you can Add Your Site now. Once you have finished adding your site, you will be presented with some Ad Code that you must insert into your own website before your site is activated. Once your site is activated, our system will begin serving the ad that you created to other similar websites.

After you Add Your Site to the Network we will present you with some Ad Code that you will need to put in the source code of your website. The Ad Code is about 10 lines of Javascript that will automatically fetch related advertisements and display them on your website in the way that you indicated when you Add[ed] Your Site. By displaying ads on your site, you tell our servers that you are actively participating in the Network and we will in turn display your advertisement on other similar pages.

Come to Registration and try AdgridWork now!

Finally, I hope these programs might help you and me increasing our Blog traffic. Let try, sleep, and maybe tomorrow, when you wake up, you have many many invitations to exchange traffic!

-->Read the full post...

Monday, September 15, 2008

43 Web Design Mistakes You Should Avoid

There are several lists of web design mistakes around the Internet. Most of them, however, are the “Most common” or “Top 10” mistakes. Every time I crossed one of those lists I would think to myself: “Come on, there must be more than 10 mistakes…”. Then I decided to write down all the web design mistakes that would come into my head; within half an hour I had over thirty of them listed. Afterwards I did some research around the web and the list grew to 43 points.

The next step was to write a short description for each one, and the result is the collection of mistakes that you will find below. Some of the points are common sense, others are quite polemic. Most of them apply to any website though, whether we talk about a business entity or a blog. Enjoy!

1. The user must know what the site is about in seconds: attention is one the most valuable currencies on the Internet. If a visitor can not figure what your site is about in a couple of seconds, he will probably just go somewhere else. Your site must communicate why I should spend my time there, and FAST!

2. Make the content scannable: this is the Internet, not a book, so forget large blocks of text. Probably I will be visiting your site while I work on other stuff so make sure that I can scan through the entire content. Bullet points, headers, subheaders, lists. Anything that will help the reader filter what he is looking for.

3. Do not use fancy fonts that are unreadable: sure there are some fonts that will give a sophisticated look to your website. But are they readable? If your main objective is to deliver a message and get the visitors reading your stuff, then you should make the process comfortable for them.

4. Do not use tiny fonts: the previous point applies here, you want to make sure that readers are comfortable reading your content. My Firefox does have a zooming feature, but if I need to use on your website it will probably be the last time I visit it.

5. Do not open new browser windows: I used to do that on my first websites. The logic was simple, if I open new browser windows for external links the user will never leave my site. WRONG! Let the user control where he wants the links to open. There is a reason why browsers have a huge “Back” button. Do not worry about sending the visitor to another website, he will get back if he wants to (even porn sites are starting to get conscious regarding this point lately…).

6. Do not resize the user’s browser windows: the user should be in control of his browser. If you resize it you will risk to mess things up on his side, and what is worse you might lose your credibility in front of him.

7. Do not require a registration unless it is necessary: lets put this straight, when I browse around the Internet I want to get information, not the other way around. Do not force me to register up and leave my email address and other details unless it is absolutely necessary (i.e. unless what you offer is so good that I will bear with the registration).

8. Never subscribe the visitor for something without his consent: do not automatically subscribe a visitor to newsletters when he registers up on your site. Sending unsolicited emails around is not the best way to make friends.

9. Do not overuse Flash: apart from increasing the load time of your website, excessive usage of Flash might also annoy the visitors. Use it only if you must offer features that are not supported by static pages.

10. Do not play music: on the early years of the Internet web developers always tried to successfully integrate music into websites. Guess what, they failed miserably. Do not use music, period.

11. If you MUST play an audio file let the user start it: some situations might require an audio file. You might need to deliver a speech to the user or your guided tour might have an audio component. That is fine. Just make sure that the user is in control, let him push the “Play” button as opposed to jamming the music on his face right after he enters the website.

12. Do not clutter your website with badges: first of all, badges of networks and communities make a site look very unprofessional. Even if we are talking about awards and recognition badges you should place them on the “About Us” page.

13. Do not use a homepage that just launches the “real” website: the smaller the number of steps required for the user to access your content, the better.

14. Make sure to include contact details: there is nothing worse than a website that has no contact details. This is not bad only for the visitors, but also for yourself. You might lose important feedback along the way.

15. Do not break the “Back” button: this is a very basic principle of usability. Do not break the “Back” button under any circumstance. Opening new browser windows will break it, for instance, and some Javascript links might also break them.

16. Do not use blinking text: unless your visitors are coming straight from 1996, that is.

17. Avoid complex URL structures: a simple, keyword-based URL structure will not only improve your search engine rankings, but it will also make it easier for the reader to identify the content of your pages before visiting them.

18. Use CSS over HTML tables: HTML tables were used to create page layouts. With the advent of CSS, however, there is no reason to stick to them. CSS is faster, more reliable and it offers many more features.

19. Make sure users can search the whole website: there is a reason why search engines revolutionized the Internet. You probably guessed it, because they make it very easy to find the information we are looking for. Do not neglect this on your site.

20. Avoid “drop down” menus: the user should be able to see all the navigation options straight way. Using “drop down” menus might confuse things and hide the information the reader was actually looking for.

21. Use text navigation: text navigation is not only faster but it is also more reliable. Some users, for instance, browse the Internet with images turned off.

22. If you are linking to PDF files disclose it: ever clicked on a link only to see your browser freezing while Acrobat Reader launches to open that (unrequested) PDF file? That is pretty annoying so make sure to explicit links pointing to PDF files so that users can handle them properly.

23. Do not confuse the visitor with many versions: avoid confusing the visitor with too many versions of your website. What bandwidth do I prefer? 56Kbps? 128Kbps? Flash or HTML? Man, just give me the content!

24. Do not blend advertising inside the content: blending advertising like Adsense units inside your content might increase your click-through rate on the short term. Over the long run, however, this will reduce your readership base. An annoyed visitor is a lost visitor.

25. Use a simple navigation structure: sometimes less is more. This rule usually applies to people and choices. Make sure that your website has a single, clear navigation structure. The last thing you want is to confuse the reader regarding where he should go to find the information he is looking for.

26. Avoid “intros”: do not force the user to watch or read something before he can access to the real content. This is plain annoying, and he will stay only if what you have to offer is really unique.

27. Do not use FrontPage: this point extends to other cheap HTML editors. While they appear to make web design easier, the output will be a poorly crafted code, incompatible with different browsers and with several bugs.

28. Make sure your website is cross-browser compatible: not all browsers are created equal, and not all of them interpret CSS and other languages on the same way. Like it or not, you will need to make your website compatible with the most used browsers on the market, else you will lose readers over the long term.

29. Make sure to include anchor text on links: I confess I used to do that mistake until some time ago. It is easier to tell people to “click here”. But this is not efficient. Make sure to include a relevant anchor text on your links. It will ensure that the reader knows where he is going to if he clicks the link, and it will also create SEO benefits for the external site where the link is pointing.

30. Do not cloak links: apart from having a clear anchor text, the user must also be able to see where the link is pointing on the status bar of his browser. If you cloak your links (either because they are affiliate ones or due to other reasons) your site will lose credibility.

31. Make links visible: the visitor should be able to recognize what is clickable and what is not, easily. Make sure that your links have a contrasting color (the standard blue color is the optimal most of the times). Possibly also make them underlined.

32. Do not underline or color normal text: do not underline normal text unless absolutely necessary. Just as users need to recognize links easily, they should not get the idea that something is clickable when in reality it is not.

33. Make clicked links change color: this point is very important for the usability of your website. Clicked links that change color help the user to locate himself more easily around your site, making sure that he will not end up visiting the same pages unintentionally.

34. Do not use animated GIFs: unless you have advertising banners that require animation, avoid animated GIFs. They make a site look unprofessional and detract the attention from the content.

35. Make sure to use the ALT and TITLE attributes for images: apart from having SEO benefits the ALT and TITLE attributes for images will play an important role for blind users.

36. Do not use harsh colors: if the user is getting a headache after visiting your site for 10 consecutive minutes, you probably should pick a better color scheme. Design the color palette around your objectives (i.e. deliver a mood, let the user focus on the content, etc.).

37. Do not use pop ups: this point refers to pop ups of any kind. Even user requested pop ups are a bad idea given the increasing amount of pop blockers out there.

38. Avoid Javascript links: those links execute a small Javascript when the user clicks on them. Stay away from them since they often create problems for the user.

39. Include functional links on your footer: people are used to scrolling down to the footer of a website if they are not finding a specific information. At the very least you want to include a link to the Homepage and possibly a link to the “Contact Us” page.

40. Avoid long pages: guess what, if the user needs to scroll down forever in order to read your content he will probably just skip it altogether. If that is the case with your website make it shorter and improve the navigation structure.

41. No horizontal scrolling: while some vertical scrolling is tolerable, the same can not be said about horizontal scrolling. The most used screen resolution nowadays is 1024 x 768 pixels, so make sure that your website fits inside it.

42. No spelling or grammatical mistakes: this is not a web design mistake, but it is one of the most important factors affecting the overall quality of a website. Make sure that your links and texts do not contain spelling or grammatical mistakes.

43. If you use CAPTCHA make sure the letters are readable: several sites use CAPTCHA filters as a method of reducing spam on comments or on registration forms. There is just one problem with it, most of the times the user needs to call his whole family to decipher the letters.

(By: Dailyblogtips)

-->Read the full post...

Sunday, September 14, 2008

Research for Domain Names: Quarkbase.com, Everything about a Website

A number of Web services (like Whois.net, URL Trends, Number of Pages Indexed,...) claim to provide you with tons of information about your favorite Web sites, including the names of the people behind it and traffic information. But none of them are nearly as complete as Quarkbase. The free information it provides is so complete, it's enough to make a blog owner a little nervous.

If you're interested in your own blog or personal Website, you can use the QuarkBase to make sure your domain registration information is accurate, find out how often links from your site have been published on services such as Del.icio.us and Digg, and even see some traffic information from Alexa.

For Example, here is the summarized information of Blogger.com.
In addition to basic information about the type of site, some summary information about the owner/publisher, its traffic rank, the language of the site, and the countries that host the site's readers, Quarkbase provides a wealth of information on the topic of the site and popular links and posts. The service provides the site's creation date and when the domain expires, contact information for the owner (pulled from the domain registration), and technical information around the site framework and type of Web server running behind the scenes.

What's more interesting than all that basic information is the social information, popularity, and traffic data that Quarkbase pulls together. Scroll down a data-collection report for a domain or click on the "popular" tab at the top of the page, and Quarkbase will display how many bookmarks referencing the site have been published at Del.icio.us, how many pages have been posted at Digg and Reddit, how many page references the site has received from Yahoo! Answers, the number of blog reactions from Technorati, links from Wikipedia, and more. The service will even tell you how many articles on the site have made it to the front page of Digg.

QuarkBase also pulls traffic information from Alexa and provides graphs showing traffic trends over several months. Additionally, the service shows you in which countries the site is most popular, the average number of page views the site receives, even the site's international reach. The service also provides highlights of where the site is mentioned on other blogs, in Twitter, or in even on news sites around the Web.

The beauty of a service like Quarkbase is that it's so inclusive and full of useful information that if you're searching for your own site because you're interested in how popular you are around the Web, you'll probably be surprised by your own reach. At the same time, when compared against sites like Wikipedia and Google, it's likely that you'll get more than a little depressed if you don't have a wide reader-base--and you might even be a little worried that so much information about you and your blog are so easily available. Expect to spend hours clicking on links from Quarkbase that will take you to references to your favorite sites from around the Web.
(By: Appscount)



-->Read the full post...

Research for Domain Names: 10 good Tools

If you are planning to start a new website and buy a domain name you will probably need to do some research on any domains that you are considering. This article does not focus on finding the right domain name, but rather the research that should be done once you’ve found a domain that you want to use.

The domain name that you purchase may or may not have a history, and that is what you need to know about. It’s possible that the domain has been penalized by Google or other search engines for the practices of previous owners, which is certainly something that you will want to avoid. A domain with a negative history can carry over when you start hosting your site on that domain.

On the other hand, the domain may have some valuable elements as a result of a previous owner, such as Google PageRank, Alexa rank, inbound links, etc. In these situations the domain will typically be for sale by the owner or through some type or re-seller service, but not always.

Here are 10 tools that can help you with your research:

Whois.net - One of the first places most people look, Whois will give you some basic information about the owner of the domain and where it is hosted. If the domain name isn’t currently registered you’ll simplify have the option to purchase it. The SEO Egghead Whois Search is another option to get the same information.

URL Trends - If the domain is existing, URL Trends will show some valuable information such as the PageRank, Alexa rank, and the number of incoming links recognized by search engines. The current data does not appear to be completely up-to-date.

Archive.org Way Back Machine - The most useful feature of the Way Back Machine is that it can show you when the domain was being used. Older domains benefit by having more trust from search engines (assuming they haven’t been penalized).

Domain History from Domain Tools - If you want to see if a domain name has any type of history, this is a good tool. Enter the domain and you’ll see dates in which the history is recorded. In order to see details you’ll have to upgrade, although it is free. If the domain has no history, you’ll see a message that there is no recorded history.

dnScoop - dnScoop has some different features than the other tools here, although it will also give you some of the same information. When you enter a domain it will tell you the age of the domain, the PageRank and Alexa rank, and the number of inbound links. One of the most useful features is that it will show you what other domains are hosted on the same IP address. Although if you purchase the domain you will be free to host it anywhere you choose.

dnScoop also gives you an idea of how much money a domain could make each month on Text Link Ads, which is obviously either an advertisement or an affiliate link. It will also calculate a value for the domain based on all of the information that it gathers. I would put too much weight into this value when deciding the price you should be willing to pay for a domain, but it can be helpful for comparing domains against each other.

Marketleap.com Link Popularity Tool - If you’re interested in seeing how many inbound links a domain has, this is a great tool. It will let you compare up to 4 different domains at one time. The report will produce the number of links being recognized by Google, MSN and Yahoo.

Google Banned Checker - You’ll want to avoid buying a domain that is banned by Google, unless you’re willing to work to get the ban removed. This tool will tell you is a domain has any pages indexed by Google. It is somewhat useful. If a domain has no pages indexed it is either new or banned. So, if you are buying a new domain this tool won’t have any value for you. Also, a domain can be penalized by Google without being completely removed from the index. This tool will not detect that penalty, it will simply tell you that a page is indexed.

SEOmoz Page Strength Tool - The page strength tool can be very helpful if you are evaluating a domain that has some history. It will show you a number of factors including PageRank, age of the domain, inbound links, and more.

Popuri.us - This is another tool for finding inbound links, rankings, and PageRank. It also includes a link to Whois and DNS info.

Number of Pages Indexed - If you are not sure whether a domain has a history or not, try this tool. It will show how many pages on this domain are indexed by the major search engines. If any pages are indexed there is some kind of history.

(By: Vandelaydesign)

Vietnameses can read here!

-->Read the full post...

Friday, September 12, 2008

Get your Mobile Blog with Mofuse and FeedM8 and earn money by Affiliate Programs

I believe that many of you using Google AdSense to earn money online. Google now has 5 AdSense services: AdSense for Content, AdSense for Search, AdSense for Mobile Content, Referrals, and AdSense for Feeds. To use AdSense service for Mobile Content, you must have a Mobile Blog. You can see now what Google Adsense says:

"In order to use AdSense for mobile content, you must have a mobile-compliant webpage; adding AdSense for mobile ad code to a standard webpage will not display ads."

If you don't currently have a mobile website (and chances are, if you're not sure, then you don't have one), you can create one by rewriting your existing website in a mobile markup language, such as XHTML, WML, or CHTML. You'll also need to make sure the layout of your website is properly formatted to display on mobile phones.

In addition, your mobile website will need to be developed using server-side scripting such as PHP or ASP. Many web hosting providers support PHP, and in many cases, you can PHP-enable your webpages simply by changing the file extension from .htm to .php. Thereafter you can paste the PHP code snippet into the section of the page where you want the AdSense for mobile ads to appear.

Keep in mind that Google will not be able to assist you with creating a mobile website. However, you may be able to find resources on the web that could help you create a mobile site. We suggest doing a Google search for terms such as "create mobile website" or "make mobile webpage".

Once you've created a mobile webpage that complies with our program policies, you're welcome to add Google ads to it!

A natural important question is: How may one rewrite the Blog as a Mobile Blog with a suitable code language? For a person who is not good at the web language like me, it is difficult to find answers!

I know two websites where help us convert our Blogs (Websites) to Mobile Blogs (Websites): Mofuse and FeedM8.

First I show you how to use Mofuse. Go to Mofuse Website, enter your Blog' URL or RSS Feed in to the box, and click into Mobilize. Next, you have to finish 3 steps: Step 1, give the display name for your Mobile Blog, choose the category of your Blog; Step 2, give your email, your pass for Mofuse (and for your Mobile Blog); Step 3, confirm and get your Mobile Blog.

Note that, when you have already converted a Blog, to add more, you Sign in Mofuse, go to Dashboard and choose Launch a Mobile Site.

After finish mobilizing, you get your Mobile Blog. For example, my original Blog is http://easyadsensevn.blogspot.com, after mobilizing I get my mobile Blog http://easyadsensevn.mofuse.mobi. Because of the RSS Feed that you have added in the Mobile Blog, you can read your posts from your original Blog. To see the posts, you use number 2 for scrolling mobile browser up, number 8 for scrolling mobile browser down, * for going back a page.

To edit something for your Mobile Blog, you sign in Mofuse with your email. There you can add the Google AdSense ID (public ID) (click into Monetize) and earn your money with your Mobile Blog.

Now I shall show you how to use FeedM8. Go to the FeedM8 Website to Sign up, enter your Web address, your email, confirm, and Submit. Now you have your Mobile Website. And you can modify everything of your Mobile Website, earn money, etc. by Setting your Mobile Blog.

You can see now the Affiliate program of FeedM8: Earn more by becoming an affiliate! When a publisher who signed up for FeedM8 through your referral link earns their first $20 from advertisers, you will be credited with $10 in your account. As a bonus, if the same publishers earns over $100 within 180 days of sign-up, you will be credited with an additional $50!

Too interesting! Click here to Sign Up with FeedM8 and here to Sign Up with Mofuse!

I hope this post can be useful for you. Vietnameses please read here!

-->Read the full post...

Wednesday, September 10, 2008

Eric Giguere: 10 steps to increase your technorati ranking

Eric Giguere is the author of the book Make Easy Money with Google - Using the AdSense Advertising Program as we have read the review here. He is also the author of another book: Uncommon Adsense. These books give us good tips and experiences for using Google Adsense.

In this post I shall share you tips from Eric Giguere about how to increase your technorati ranking. I have read this here. My blog technorati ranking is low, and I'm learning day by day to increase it. All the best for you and me!

Following are the tips:
  1. Consolidate your blogs into one. Ultimately, it's all about the links back to your blog. Multiple blogs means fewer links to each blog, hence lower rankings for each blog. One way I could get Make Easy Money with Google and AdSense to rank higher is to fold in GeekAffiliate, but I'm not going to do that. Consolidating your blogs might be better for your Techorati ranking, but it may be bad for your readership, especially if the different blogs you run on are very different and unrelated topics. Only you can decide what's more important. But if you're going for a high ranking, There Can Be Only One.
  2. Claim your blog. Self-evident, but Technorati's not going to rank your blog if they don't know about it!
  3. Tag the blog. When you claim the blog, you get to tag it with up to 20 keywords that describe the blog. Fill all 20 slots with relevant keywords.
  4. Tag the posts. Place relevant Technorati tags in each post. If you're using WordPress, the SimpleTags plugin makes it really easy to tag your posting as you're writing it.
  5. Use good tags. There's a bit of an art to choosing how you'll tag a post. You'll have a list of standard tags (for this blog, I obviously tag almost every post with “AdSense” and “Google”) but you'll want to spend some time exploring the Technorati tag clouds to find popular tags that you might be missing. (This applies both to the blog tags and the post tags.)
  6. Ping promptly. When you post a new blog entry, immediately ping Technorati. It's trivial to do it automatically, but you can also do it manually if you must. But the timing is important because Technorati lists blog postings by their publication time, not by their ping time. So if you post an item and only ping an hour later, your entry might never show up on the first page for a given keyword, especially for popular topics.
  7. Make sure your blog is being indexed. Some blogs (such as mine) have had problems getting Technorati to index them properly. Make sure you posts are showing up and that your “last updated” time for your blog is correct.
  8. Develop some authority. Anyone with a half-decent blog on any remotely profitable topic is going to have splogs linking to them in no time flat. What you want, though, are links from older, more established, authoritative blogs. These will confer an aura of authority on your own blog. Technorati browsers can selectively filter out low- or no-authority blogs, so it's important to get some authority as quickly as possible.
  9. Add a photo/avatar to your blogs. A lot of blogs don't have a photo or avatar associated with them. It's really easy to add one to your Technorati account. When people are scanning through Technorati looking for interesting blogs, using an eye-catching graphic as the photo/avatar is one way to make your blog jump out at them. You still have to convince them to read, though, so…
  10. Be interesting. Ultimately, your blog's going to be judged on its content. If you're writing good stuff, others will link to you, though you can make that more likely by writing good headlines (see 10 Sure-Fire Headline Formulas That Work) and leaning towards topics and opinions that are more on the controversial side.

The Technorati ranking is just one measure of a blog's popularity, of course, but not every well-read blog is necessarily going to show up high in Technorati's list. But if public recognition is what you crave, the steps I just described will help you climb the rankings.

Remember, it's one post at a time, and don't forget that you're competing against other blogs who are also trying hard to increase their rankings. That's why your rankings drift if you don't keep your blog going — it's not really that you lose links, but that other blogs keep getting links. (Refer back to The Tyranny of the Blog.)

-->Read the full post...

How to display "Recent Comments" for your blog just in 1 minute?

I think that there are many people have the same problem as me in replying the comments in our blog. Your responsibility in replying comments is one of the tips to increase your Blog traffic. However sometime we don't know that there are some comments about one of our old posts. One way to know is that, you can set in the Setting tag for the Comments the Comment Notification Email. Once you have a new comment, the system inform you automatically via this email. However, if you have many comments the your mail-box will full!
According to me, if we can display in our blog the function: Show recent comments then it is easier to control, because I am sure that you surf your blog every day!
How to do it? There are many ways to fix this problem, of course. However the simplest, fastest way as I have ever known coming from Blogger-Templates. You can come there to fill out your information, click into Apply --> Add Widget into my Blog, a new window open, you Select a blog, choose the Title, Add Widget. It takes you about 1 minute to finish!
Now you can come here to show your Recent Comments!
Vietnameses can visit here to read!
-->Read the full post...

Tuesday, September 9, 2008

Trick to Add AdSense, AdBrite and Other JavaScript Ad Code Directly to Blogger HTML Template

I have at least once a problem with adding the code from Google AdSense, AdBrite, Amazon Associtates,...However I can find the solution when I read the post of Mydigitallife. Following I shall share to you this post. Vietnameses can visit here to read.

Note: In my post, I show you how to translate a Html code to a Xhtml code using a tool from Eblogtemplates: Blogger Ad Code Converter. Thanks for a useful tool!!!

Advanced users of Blogger.com service may have tried to insert and put Google AdSense ad code which is actually a Java script directly into the blog pages by manually editing the XML-based template HTML coding interface. Actually, it’s possible add any ad code by using HTML/JavaScript page element within the Blogger new XML template system, but the place where you can place the new block is rather limited, i.e. above or below the post body, header, footer, within sidebar or between blog posts. In case you want to put the ads inside the post, or align the ads to float and wrap around the text, or just within the single individual article content view, you will have to edit directly the HTML coding of Blogger template.

If you try to insert any Google AdSense, AdBrite, AdEngage and any other JavaScript based ad code, or client-side components such as counter, tracker, form, snippet, effect, date and time, etc which is JavaScript based, the following error message may be returned when saving ore previewing:

Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly. XML error message: The processing instruction target matching “[xX][mM][lL]” is not allowed.

or

Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The reference to entity “zs” must end with the ‘;’ delimiter.

and many other different XML error message.

The problem is caused by incorrect dynamic interpretation of Blogger XML template when it generates the HTML webpage for the blog page that is requested, probably due to the fact that the AdSense ad code or other code is not a valid XML, coupled with the fact that some ASCII characters have special meaning and reserved functions, confusing Blogger blogging engine.

The resolution to the JavaScript based coding does not work in Blogger HTML template error can be solved by replacing special characters or symbols in the script to HTML code. Check out the list below for which ASCII characters that need to be replaced with their corresponding HTML code. Using HTML code will ensure that Blogger render the character correctly when serving the page to the viewer.

< --> &lt;

> --> &gt;

Above two is enough to make Google AdSense works in Blogger template. For other scripts, such as AdBrite ad code, you will need to replace more characters such as those listed below.

& --> &amp;

” --> &quot;

For example, a Google AdSense code should become looks similar to code below:

<script type="text/javascript"><!--
google_ad_client = "pub-XXXXXXXXXXXXXXX";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_text = "000000";
google_color_url = "000000";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

While an AdBrite ad code will became the similar code to the below:

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

var AdBrite_Title_Color = '0000FF';

var AdBrite_Text_Color = '000000';

var AdBrite_Background_Color = 'FFFFFF';

var AdBrite_Border_Color = 'FFFFFF';

&lt;/script&gt;


&lt;script src="http://ads.adbrite.com/mb/text_group.php?sid=303771&amp;zs=3330305f323530" type="text/javascript"&gt;&lt;/script&gt;

<div><a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=303771&amp;afsid=1" style="font-weight:bold;font-family:Arial;font-size:13px;">Your Ad Here</a></div>

Simply use the text editor to parse the code and then replace the characters. Don’t worry about violating AdSense TOS or other terms and conditions, as once the blog’s web pages are rendered and presented to the viewers and visitors, the code will be exactly same as the original code before any replacement!

Now I shall show you how to translate a Html code into a Xhtml code using Blogger Ad Code Converter. You can get this tool for free by clicking here.

What you need to do is that, register for AdSense, AdBrite, Chitika eMinimalls,... and get the Ad Code from there. You paste that code into Blogger Ad Code Converter. You can get your Xhtml code in a moment. Highlight All it, and paste it into your Html source where you would like. I'm sure that it works well!

Please see the following picture:

I wish you can solve your problem as what I have done!

-->Read the full post...

Monday, September 8, 2008

30 Traffic Generation Tips

Here are the tips given by 30 famous Bloggers to help you increase your Blog traffic.

Vietnameses can visit here to read the translation.

1. Sridhar Katakam
Keep track of blogs and leave comments on them. A good way to keep the conversation going is to install a MyBlogLog widget and visit the blog of people visiting your site.

2. Ian Delaney
Nothing creates long-term traffic more than value. Consider writing posts with resources or explaining how things work. Useful things get linked to and they get onto del.icio.us, which is far better long-term than a digg front page.

3. Scott Townsend
Inform search engines and aggregators like Technorati (using the ping functionality) when your blog is updated, this should ensure maximum traffic coming from those sources. (check the List of Ping Services)

4. Kyle
Simplify. Pay attention to complex issues in your field of work. It may be a big long publication that is hard to wade through or a concept that is hard to grasp. Reference it and make a shorter “for dummies” version with your own lessons learned and relevant tips. When doing this, I have been surprised to find that the simplified post will appear before the more complex version in search results. Perhaps this is why it results in increased traffic; people looking for more help or clarification on the subject will land on your blog.

5. Grant Gerver
Try to be polemic. I write obsessively about all-things political from the left-wing perspective in the form of humorous, sarcastic one-liners.

6. Daniel
A simple tip that will probably boost your page views: install a translator plugin. I decided to use a paid plugin for this, but if I am not wrong there are some free ones as well. The translation is not very good, as you can imagine, but it helps to attract readers that are not fluent in English.

7. Rory
Submit articles to blog carnivals (http://blogcarnival.com) that are related to your niche. Your article almost always gets posted, and it must generate a handful of visitors, at least.

8. Ramen Junkie
Newsgroups. I always see a spike when I post a review to a newsgroup.

9. Eric Atkins
Create a new design for your website. Not only will it be more attractive to your regular readers, but you can submit it to some CSS gallery showcase sites that feature great designs. This will give you exposure on those sites while generating a lot of traffic and backlinks from those types of sites.

10. Megan Taylor
Participate in conversations on related blogs. Start conversations on your own blog. Don’t just post about a story and leave it at that, engage your audience, ask questions and call to action.

11. Guido
Comment on blogs, write useful content and make good friends on forums.

12. Brian Auer
You must be active to generate traffic. I post comments on other blogs that are related to mine, and I post my site link in my signature at the forums. Spread the word about your blog and it will certainly attract readers.

13. Shankar Ganesh
Just browse around MyBlogLog.com and you will surely get visitors to your blog. Also try to join as many communities as possible that are related to your topic.

14. Andrew Timberlake
A great tip for generating traffic is off-line by including your url in all your off-line liturature from business cards, letterheads, pamphlets, adverts through in-store signage if applicable. I even have our website on my vehicle.

15. Cory OBrien
Read lots of other blogs. Leave trackbacks. Make sure your blog is optimized for search engines. Leverage social bookmarking sites like digg (both for new ideas and for traffic).

16. Jester
Leave comments on other blogs. If you’re already reading them, it takes
just a couple of seconds to leave a message agreeing or disagreeing
with the author, you get to leave a link to your site, and you will almost
ALWAYS get traffic from your comments.

17. Goerge Manty
Post 3-5 times a day. Use ping services like pingomatic or set up wordpress to ping some of the ping services. Engage your readers. Put up polls, ask them questions, give them quizes, free tools, etc. Make them want to come back and tell their friends about you.

18. Engtech
Community. It’s one word but it is the most important one when it comes to blogging. The only “blog metric” that makes sense is the vibrant community of readers it has. Building a community around your blog will bring you increased traffic, but how do you start? The boilerplate response to building traffic is always “SEO, social networking sites, and commenting on blogs” but it can be simplified to “be part of a community”. The easiest way to seed your blog is with an already existing community. But the only way to do that is to be part of the community yourself.

19. Chris
Squidoo Lenses are a good way to generate traffic. By using a lense,
you can generate your own custom “community” of webpages, including some
of the more popular pages in your “neighborhood.” Including your own
webpage in such a list is a good way of generating traffic.

20. Splork
I’ve had good success writing articles and submitting them to EzineArticles. Articles that have been written from well-researched keyword phrases and accepted by EzineArticles tend to rank very high in Google for that search term. Placing anchor text in the footer of those articles so the reader can visit my relevant website has always increased my site traffic.

21. Jen Gordon
I came upon some unexpected traffic when my blog popped up on some css design portals like www.cssmania.com and www.webcreme.com. If you can put some time into the concept behind and design for your blog, I’d recommend submitting your site to a design portal not only for
additional traffic but to build an additional community around your site.

22. Kat
I’ve recently gotten involved with several “MySpace-like” community sites that focus on my target audience. I share my thoughts in their forums, post intros to my real blog on their system blog and I’ve even created a group for my specific niche. It’s been very, very successful for me.

23. Inspirationbit
Well, obviously everyone knows that social bookmarking sites like Digg, del.icio.us, etc. bring lots of traffic. But I’m now submitting some of my articles to blogg-buzz.com (a digg like site for bloggers), and I always get not a bad traffic from there.

24. Mark Alves
Participate in Yahoo Answers and LinkedIn Answers where you can demonstrate your expertise, get associated with relevant keywords and put your URL out there.

25. Tillerman
Be the first to write a post about the ‘Top Ten Blogs’ in your niche. The post will rank highly in any general search for blogs in your niche and other bloggers in your niche write about the post and link to it.

26. Nick
Participating in forums is a great way to get loyal readers. Either link baiting people in your signature or posting great advice and tips will give you high quality traffic, which will result in return visitors.

27. Brandon Wood
A simple trick I’ve used to increase traffic to my blog is participate in group writing projects. In fact, that’s what I’m doing right now.

28. Alan Thomas
Don’t forget your archives. I just posted a roundup of all interviews I did over the past seven months. One of them generated a new link and a big traffic spike from a group of users that look like they will be loyal readers now.

29. KWiz
Write something controversial. I don’t think it’s good to write something controversial just for the purpose of getting traffic necessarily (especially if it’s only for that purpose and you’re being disingenuous), but it works.

30. Dennis Coughlin
Find the best blogs on your niche and contact the authors. Introduce yourself and send a link of your blog. This might help them to discover your blog, read it and possibly link to it.

(By: Dailyblogtips)

-->Read the full post...

Enter your email address:

Delivered by FeedBurner

Watch the latest videos on YouTube.com
Your Name :
Your Email :
Subject :
Message :
Image (case-sensitive):