March 2009
13 posts
Daytum
I signed up at daytum.com awhile back hoping my account would be active by my birthday so I could have some sort of reference point for tracking. I think my current data sets are lacking in fun things to track but accurately reflect day to day stuff. I do get excited about bagels though.
I hit the maximum number of displays with six, but it keeps the page from getting too busy. Also, I believe...
1 tag
Site in Progress
I’m almost finished with a simple photo portfolio site. I think it looks pretty simple and straightforward, but there is a lot of coding craziness going on back there. I just came across a fantastic IE fix on Chris Coyier’s css-tricks, so I thought I’d compile a list of scripts/code/whatnot I’ve used on the portfolio site.
IE Fix: Bicubic Scaling for Images
This is the...
Life is not measured by the number of breaths we take, but by the moments that...
– someone’s status update on facebook— attributed to George Carlin without irony.
Fashion in Felt at the Cooper-Hewitt National... →
reference for future projects
1 tag
IE opacity fix
I get very excited when I get something to work in Internet Explorer along with everywhere else. I wanted an image gallery thumbnail set at 50% transparency to change to 100% on hover and remain on 100% if clicked.
Here’s a fix for opacity:
A:link {
opacity:.5;
/* for IE */
filter: alpha(opacity = 50);
zoom: 1;
}
A:visited {
opacity: 1;
/* for IE */
filter: alpha(opacity =...