this blog is a collection of resouces i like, some post are created by myself (which will be in mine menu) and other are taken form online. source link will be place in every post.

I am working as web designer, wordpress and joomla customization. and i love open source. Don't you.

All the materials are keep for education and fun propose only.

Comment and feedback is always welcome.

Wednesday, August 1, 2012

how to use html5 tag for ie8 and 1e7

here is very simple script that allow to use html 5 tag for ie8 and ie7

<!--[if lt IE 9]>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('hgroup');
</script>
<![endif]-->

Sunday, July 8, 2012

Free SEO Toolkit From Microsoft

The IIS Search Engine Optimization (SEO) Toolkit helps Web developers, hosting providers, and Web server administrators to improve their Web site’s relevance in search results by recommending how to make the site content more search engine-friendly.

Download Link: http://www.iis.net/download/SEOToolkit

10 Fast Approval Directory Site List

I have been doing seo work and directory submission is one of the most important step to get back link.

Below is a list that i use most.

mwebsolutions.com
inksvalley
myowndir.com
webnetclick.com
eca-wca-kiwi.com
concentraweb.com
nextposting.info
onlinewebdir.com
onlineweblink.net
paraworldsite.com
parkolgida.com

Wednesday, July 4, 2012

css for iphone

CSS for iphone4
i have tried this
<link rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2)" type="text/css" href="iphone4.css" />

there are also other way,

<link rel="stylesheet" media="all and (max-device-width: 480px)" href="iphone.css">
<link rel="stylesheet" media="all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)" href="ipad-portrait.css">
<link rel="stylesheet" media="all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)" href="ipad-landscape.css">
<link rel="stylesheet" media="all and (min-device-width: 1025px)" href="ipad-landscape.css">

source::
http://stackoverflow.com/questions/3839809/detect-iphone-ipad-purely-by-css