Innovation

car rental business card

Your Car Rental Business Card is Crap

car rental business card

I couldn't afford a hand model

No, I don’t really think your card is crap. If you have watched the “your business card is crap video” below, you’ll understand it’s just a laugh. I’ve never really had a business card to be proud of at networking events and travel conferences. Actually, I’ve rarely even had a business card at all. I don’t really see the importance of one. If someone needs a business card to remember you, then you aren’t memorable enough :-)

We didn’t like feeling like Patrick Bateman from American Psycho, so during our recent website redesign, David decided to redo the business cards at last. I found a bucket full of keys that were used for a publicity stunt years ago and thought we’d recycle them. The result is in the photo. Yes, I have a mongo finger. I couldn’t afford a hand model.

Your business card is crap!

As a side note, here’s an old video of someone who takes their business card VERY seriously. It’s titled “your business card is crap”. I’d love to do a re-enactment of this, if only I could do it with a straight face.

CSS Input Box Makeover

He really loves people typing words into him but he doesn’t want to be sad anymore. CSS Input Box has been neglected for too long. His friends Bookmark, Banner and Background have been given the makeover treatment, while the trusty Input Box is doing most of the work.  It’s time he deserves some tender loving care and he needs your help. This page shows you how.

Old Style Box

New Style White Box

HTML
<input type=text class=freshwhite>

CSS
input.freshwhite{
font-size:18px;
background: url(input-box-white387a.png) left center no-repeat;
height:43px;
width:451px;
border:0px;
padding-top:10px;
padding-bottom:3px;
padding-left:18px;
margin-right:15px;
outline: none;
}

input.freshwhite:hover{
background: url(input-box-white387b.png) transparent left center no-repeat;
}

input.freshwhite:focus{
background: url(input-box-white387a.png) transparent left center no-repeat;
}​

IMAGES
copy these to the same folder as the CSS

input-box-white387a.png

input-box-white387b.png

New Style Blue Box

HTML
<input type=text class=freshblue>

CSS

input.freshblue{
font-size:18px;
background: url(input-box-blue339a.png) left center no-repeat;
height:43px;
width:451px;
border:0px;
padding-top:10px;
padding-bottom:3px;
padding-left:18px;
margin-right:15px;
outline: none;
}

input.freshblue:hover{
background: url(input-box-blue339b.png) transparent left center no-repeat;
}

input.freshblue:focus{
background: url(input-box-blue339a.png) transparent left center no-repeat;
}

IMAGES

copy these to the same folder as the CSS

input-box-blue339a.png

input-box-blue339b.png

Download this photoshop psd to make your own style and size
Download all files in this project