This is the best color scheme engine I've found:
http://colorscheme.ru/
It is in Russian, but that just makes it more fun. Or you can use google translate and get a hilarious translation of the various controls.
Snippets of code and tricks that would otherwise be forgotten. Useful for me, hopefully for you too.
Thursday, April 26, 2012
Friday, April 20, 2012
The 'mobile' meta tag
This tag isn't a magic bullet, but don't forget to include it whenever you're starting a mobile site design.
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=false;" />
// user-scalable=true? It's up to you.
Tons of information available here: https://developer.mozilla.org/en/Mobile/Viewport_meta_tag
UPDATE 12/14/12: I've been having luck with this one too:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, target-densitydpi=device-dpi" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=false;" />
// user-scalable=true? It's up to you.
Tons of information available here: https://developer.mozilla.org/en/Mobile/Viewport_meta_tag
UPDATE 12/14/12: I've been having luck with this one too:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, target-densitydpi=device-dpi" />
Subscribe to:
Posts (Atom)