Category: Blog Tips

Free desktop client for Google Analytics

June 19th, 2009 | No Comments

Polaris is a free desktop client for Google Analytics for single website.

To monitor multiple websites, Polaris costs $15 per year.

Below are some snapshots of Polaris.

dashboard

The Dashboard

continue reading


How to set the font size using CSS

May 29th, 2009 | No Comments

First reset 1em to 10px for the whole page.

body {
	font-size: 62.5%; /* Resets 1em to 10px */
}

Finally, set the font size for a section, such as the content.

#content {
	font-size: 1.6em;
	line-height: 1.6em;
}

1.6em is equal to 16px.

The line-height is the distance between lines.


Display copyright with the current year

April 30th, 2009 | No Comments

To display copyright with the current year:

&copy; Copyright 2008 - <?php echo date("Y") ?>

Blog Editor Tools

October 20th, 2008 | 2 Comments

Here is the list of blog editor tools.

  1. Windows Live Writer
  2. w.blogger
  3. Scribefire
  4. Qumana
  5. BlogJet
  6. BlogDesk
  7. Zoundry Raven
  8. Post2Blog
  9. ecto
  10. MarsEdit

If you don’t see an editor on the list that you can’t live without, please take a second and leave a comment about it.


9 ways to hide affiliate links

August 18th, 2008 | 16 Comments

These codes are useful for hiding the affiliate links. However, please read the affiliate program terms of service, so that you won’t go against it.

continue reading