This is a good news, if you are looking for eyeglasses online in internet, lets visit The #1 online Rx glasses store called zennioptical.com. Zenni Optical offer Lowest Price Progressive Glasses for your eyes.
Current glasses are not only used by people who have eye disorders, but evolved into a fashion accessories to look stylish. And this is realized by Zenni Optical, thus creating various models of fashionable glasses. and if you need a reference about the glasses that really offered Zenni Optical, you can read Eric’s Review of Zenni Optical. You will realize that Zenni Optical offers truly high quality glasses and cheaper prices.
If you choose glasses, then you think about is how to get glasses with easy price with best quality. Zenni Optical is The #1 online Rx glasses store. And if you need more detailed information about the glasses offered by Zenni Optical, once againt you can visit and choose glasses that match your style at www.zennioptical.com.
March 29th, 2010 | Posted in Uncategorized | No Comments
Styling author comments in wordpress. Sometimes we want to distinguish between the author comments and visitor comments in wordpress blog. This quite easily to do.
First, such an author named “admin”, to distinguish admin comments on the blog place the following piece of code in your style.css file:
.comment-author-admin {
background: #AAAAAA;
margin: 0px;
padding: 0px;
}
For different author name, Try to change admin with another name as author name. for example: if author name “byme” so you must change code above like this .comment-author-byme
This code uses the standar wordpress comment code, may be the result would be different if you use different comment code model. Thanks
byme
December 29th, 2009 | Posted in Uncategorized | No Comments
The CSS text-shadow property is used as follows:
text-shadow: 3px 3px 4px #000;
This produces the following text with a shadow 3px right and below of the text, which blurs for 4px:
Users of Webkit (from Safari 3+), Opera 9.5, Firefox 3.1(pre-Alpha), Konqueror or iCab should see a grey drop-shadow behind this paragraph.
For anyone not using those browsers, here is a example image:

December 1st, 2009 | Posted in Uncategorized | No Comments
SEO (Search Engine Optimization) is a very important part of your wordpress blog because without a good seo, you will loss lots of potential visitors from search engine. So make your wordpress SEO friendly is a good thing to boost your wordpress blog traffic. One of the SEO technique is to optimise the <title> tag of your wordpress blog for a better SEO.
Lets do this!
Open your wordpress theme header.php file for edition. find <title> tag, and replace it by the following code:
<title>
<?php if (is_home () ) {
bloginfo('name');
} elseif ( is_category() ) {
single_cat_title(); echo ' - ' ; bloginfo('name');
} elseif (is_single() ) {
single_post_title();
} elseif (is_page() ) {
bloginfo('name'); echo ': '; single_post_title();
} else {
wp_title('',true);
} ?>
</title>
This code will generate the title tags according to the following model:
- If wordpress blog visitor is on the wordpress homepage: We’ll display the blog name.
- If wordpress blog visitor is on a wordpress category page: We’ll display category name and the blog name.
- If wordpress blog visitor is on an wordpress article page: We’ll only display the article title.
- If wordpress blog visitor is on a static page: We’ll display blog name, and the page title.
You are done. You can also use All in One SEO Pack popular wordpress plugin to make your wordpress blog SEO Friendly.
October 22nd, 2009 | Posted in Uncategorized | No Comments
Speed up wordpress blog. WordPress, by default, setting with uncompressed and then sends uncompressed HTML to the visitor’s browser. If your wordpress blog have thousands of visitors every day, this will cause problems for your wordpress blog and also causes access to your blog to be slowly.
With one line of the code added to your header, you can compress the WordPress’s output by up to 75 percent. By using zlib compression technology, you can harness power of PHP and reduce your wordpress blog’s load speed!
Oke the first, place the following code in a file that call it with “test.php” and then upload this to the root of your wordpress blog directory:
<?php phpinfo(); ?>
Don’t forget to make sure that “zlib” is enabled by your hosting provider.
The second, place the following code in your header.php above the DOCTYPE:
<?php
ini_set('zlib.output_compression', 'On');
ini_set('zlib.output_compression_level', '1');
?>
And done. To ensure that you have compressed your wordpress blog and speed up it become faster, check here port80software.com
October 21st, 2009 | Posted in Uncategorized | 1 Comment