Christmas 2008

Wednesday, Dec 31, 2008 at 9:38 am | 0 Comments

2008 has been a great year for me, personally. I got married in June and my new wife and I moved to New York City in July, immediately after our honeymoon. The wedding, along with a funeral for a friend’s 16 day old daughter, brought many excuses to do print design work this year, something I’ve not done much of in the past. I designed everything for our wedding – invitations, thank you cards, signs, etc.

I thought I would take a minute and share the Christmas cards, matching gift tags and letters that I designed this year. I designed the Christmas cards and gift tags in Fireworks and the Christmas letter in Illustrator. A single typeface was used – Garamond Premier Pro.

Christmas card, gift tag and letter

Close up of the typography for the letter

I hope this year was as kind to you as it was to me. See you in 2009.

Recent Discussion

Victor on “Multiple Classes in IE”:

Oww that pretty neat. pretty useful for on the fly class changes and some nice ajax effects can be done with this

Prestaul on “Multiple Classes in IE”:

Mark - IE6 does NOT support chained class selectors. Your example was flawed because your classes specified style changes that are exclusive. (i.e. background changed background color and border changed border style, but neither effected the other)

If you chain classes in a selector IE6 ONLY RECOGNIZES THE LAST ONE. This means that in IE6 this:

div {
color: green;
margin: 10px;
background-color:maroon
}

div.border {
border: solid 1px black;
}
div.background {
background-color: black;
}

div.background.border {
background-color: yellow;
}

is equivalent to:

div {
color: green;
margin: 10px;
background-color:maroon
}

div.border {
border: solid 1px black;
}
div.background {
background-color: black;
}

div.border {
background-color: yellow;
}

Test it and see if I'm right on that.

Or, try this:

div.background {
background-color: black;
}

div.border.background {
background-color: yellow;
}

and see if you can get a div with class="background" to show up with a black background in IE6... You can't.

Still Fresh

Christmas 2008 0 comments 12/31/2008
Election 2008 0 comments 11/04/2008
SolutionSet Blog 0 comments 02/19/2008
Controlling Resizable Text Fields in Safari 1 comments 06/20/2007
Multiple Classes in IE 25 comments 06/04/2007