Notes to self

Easy solutions to tricky problems
Oct 15
Permalink
Sep 10
Permalink
Jul 22
Permalink
Jul 09
Permalink
In the Save for Web dialog, cllick on Image Size (in the bottom right corner): select “Clip to Artboard” and hit Apply.
Jun 23
Permalink
Permalink

Setting up parallels and virtual hosts on your Mac

From this article, with some small changes:

  1. Skip point 1, use MAMP for the OS X stuff
  2. Skip first half of point 2 as well.
  3. Download bonjour for Windows
  4. Edit windows’ host file with “your-computer.local” instead of all the IP number stuff.

Ta-da!

May 26
Permalink
Permalink
May 20
Permalink
IE6’s unwillingness to collapse to a smaller height than the base font-size. Set overflow:hidden; or font-size: 0;
May 18
Permalink

IE6 CSS negative margin

Negative margins don’t work in IE6 on floated elements.

If possible, use another hasLayout trigger:

    .element {
        float: none:
        zoom: 1;
    }