[video]
Trying to control a particular layout when orienting the iPad vertically was driving me insane… until I found this sweet query to tackle it:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
// Styles
// Styles End
}
I found a sweet piece of code that enables you to create a an icon for your website that can be used when adding it to your home screen on the iPhone or iPad.
<link href=”path/to/your/icon.png” rel=”apple-touch-icon” />
Without this piece of code the device will take a screen shot of your web page and create an icon of it. You can imagine how that looks on an icon.
To get nice and sharp icons, create them at 154x154 - 72dpi.
More about tips on web apps development for the iPhone here: 10 Tips for New iPhone Developers.
I got stated optimizing for mobile devices a web app I’m working on using CSS3 Media Queries, and while I was able to change the layout, color and so forth, it was driving me crazy the fact that the devices where resizing the browser screen to the standard desktop size, making the layout seem tiny.
Then I found out the missing piece:
Mobile devices assume your website is optimized for desktop computer unless you tell them otherwise.
10 Tips for Designing Mobile Websites | By Keen Street
To avoid this is necessary to use a meta tag on the header section of the HTML page to set the with of your webpage to the with of the device display:
<meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes” />
More about this and nother “must-know” things when designing mobile devices here: 10 Tips for Designing Mobile Websites. Thanks Keen!
Exited to have joined dribble.
At least forgotten by me, the a:visited property is a quick and neat way of making your designs more usable and to even “sensitive” to the touch.
Looking for an easy to use app to do my home’s inventory I found one that seems to do the job pretty well. This app is What You Own Home Inventory 4.13 for Mac. Also available for the pc, this app offers a nice interface to quickly add items on your inventory, and attached to them detailed information (such as the purchase price, replacement cost, make, model, brand, etc.) but also images, and receipts and other docs. Pretty slick!
Didn’t think a CSS grid system could be so useful until I stared working with 960 grid. So far it looks very promising :) — http://960.gs/
Any web designer that has had to work on either the design and mostly the coding of an email knows the pain it can be. Not only because all of the limitations that email programs impose, and how tedious is the testing, but because you find yourself coding like is 1994. Thankfully there’s Mailchimp! I recently discovered it and can’t be more excited about it.
I absolutely love mailChimp! I singed up for the contest just to try it out and think will stick to it! Cheers for their awesome marketing too :D