I had a javascript hiccup, and I think the solution may be helpful to others. The basic setup is this: Limited space means no room for labels in a login form. So instead we used a preset value in the input elements, like so: <input value="Username" name="username" type="text" /> <input value="Password" name="password" type="text" /> Which […]
Internet Explorer image resizing tip
Who knew? Though it's not best practice to resize images in the browser this could really be useful in the right situation: img { –ms-interpolation-mode: bicubic; } This little snippet will vastly improve the image resizing abilities of ie — bringing it closer to the resized image quality experienced with Firefox or Safari. […]