June 2012
1 post
Jun 1st
May 2012
5 posts
3 tags
Equal Height Columns with Pure CSS
I discovered a method for achieving equal height columns that I can’t help but share. This technique involves the use of position: absolute with top and bottom set to zero. What makes this method unique is that it allows you to have equal height columns inside of a container, regardless of the height or position of the container.  I setup a demo on...
May 30th
May 23rd
1 tag
“Pursue your purpose.”
May 22nd
2 tags
Clint McKoy Concert Tonight!
It’s been about 5 years since I’ve done a concert, after a few years of non-stop touring. I was asked to share some music tonight at a local church. I’m kind of nervous, ok, really nervous, but excited about it at the same time. I feel like my music and outlook on life has changed drastically in the last 5 years. So, if you’re bored and looking for some free entertainment...
May 19th
A Great Quote About Regret →
cameronmoll: Kathryn Schulz, as quoted by Maria Popova: If we have goals and dreams and we want to do our best, and if we love people and we don’t want to hurt them or lose them, we should feel pain when things go wrong. The point isn’t to live without any regrets, the point is to not hate ourselves for…
May 15th
29 notes
April 2012
5 posts
Apr 29th
1 tag
Apr 27th
2 tags
John Cleese - a lecture on Creativity →
An amazing talk on what causes creativity and how to be more creative. (click the title)
Apr 10th
1 note
3 tags
Apr 7th
2 notes
Apr 4th
March 2012
4 posts
‘Paper’ for iPad →
cameronmoll: There are so many things right about this app. The lovely watercolor, miniature sketchbook icon. The marketing site. The “take this everywhere life takes you” video above. And the undo gesture: Place two fingers on the screen and draw a circle counter-clockwise to undo and clockwise to redo. (Though the number of undo/redo steps are limited.) Download the app for free, and then...
Mar 29th
35 notes
1 tag
Mar 22nd
1 tag
Mar 22nd
3 tags
Helpful hint when using em's in place of px's.
I’m making the switch from px’s to em’s in my CSS and I ran across this helpful hint today: “Setting your default font-size to 62.5% means that the standard font-size on your web-page would be 10PX. Thus 1EM = 10PX, 1.5EM = 15PX, 1.2EM = 12PX and so on.” So, set your body font-size to 63% and em calculations aren’t that bad after all! In case this just...
Mar 16th
1 note
February 2012
3 posts
Feb 27th
Feb 20th
1 tag
Feb 7th
2 notes
January 2012
3 posts
Jan 21st
1 tag
Jan 12th
Crafting the Front-end. →
Genius. Every front-end developer needs to read this (click the title above).
Jan 2nd
December 2011
2 posts
5 tags
Screen Zoom in Mac OSX Lion
I needed to utilize screen zoom today on my Mac but couldn’t find it. After much searching, I discovered that the screen zoom settings are located in a different place on Lion. I was also surprised to discover the functionality has changed drastically. You can find the new settings here (play around with the various options): System Preferences > Universal Access > Seeing > Zoom in...
Dec 16th
4 notes
2 tags
Getting True Height with jQuery
I’ve come across this issue multiple times when trying to get the height of a content area (that contains images) using Javascript. In Webkit browsers (like Safari & Chrome), the height you retrieve will be minus any image heights, therefore not a true height. The reason for this is the order in which webkit loads images. The simple solution to this issue is to make your call using...
Dec 9th
18 notes
November 2011
2 posts
3 tags
Nov 24th
Safari Address Bar Shortcut
For some reason, Safari on my new iMac at work doesn’t initially focus on the address bar. As a work-around, I’m using the keyboard shortcut which is: Command + L (in case anyone else wanted to know).
Nov 21st
October 2011
2 posts
3 tags
Oct 24th
3 tags
Oct 24th
1 note
September 2011
2 posts
1 tag
“Rseaerch icntidaes taht the oerdr of the ltteers in a wrod dnsoe’t relaly...”
– Came across this today while reading an incredible article about branding, entitled “Branding Is About Creating Patterns, Not Repeating Messages”  Check it out: http://goo.gl/GO9LG
Sep 16th
3 tags
Target Webkit (Safari and Chrome) Browsers Only.
A few weeks ago I wrote a post about how to target Firefox in your CSS. Today I had an unusual issue that was appearing on Webkit browsers only and needed a quick fix. I came across a smart way of doing just that using a media query. Here you go: @media screen and (-webkit-min-device-pixel-ratio:0) { /*webkit only CSS goes here*/ } I found this code on the website: CSS, Javascript, and XHTML...
Sep 15th
5 notes
August 2011
2 posts
3 tags
Aug 29th
6 notes
3 tags
jQuery Easing Functions List
It seems like I’m needing a list of jQuery easing functions a few times a week.  I finally took the time to compile a list and thought I’d share. You’ll find a list below. During the process, I also found a cool website with easing demos:  http://goo.gl/IgrXl jQuery Easing Functions: linear swing jswing easeInQuad easeOutQuad easeInOutQuad easeInCubic easeOutCubic ...
Aug 26th
58 notes
July 2011
4 posts
3 tags
Submit Input Value Won't Go Away!
I’ve come across this issue a few times lately, where the value for a text input will not disappear in IE7 (Internet Explorer 7) by using text-indent alone. This becomes an issue when trying to implement a custom submit button that consists of a background image only. The solution: Give the input a very high line-height and set the overflow to “hidden”.  input { line-height:...
Jul 21st
4 notes
1 tag
Jul 17th
1 tag
Jul 15th
3 tags
Cross-Browser Vertical Text Alignment for Inputs
I finally came up with the correct styling formula for vertically aligning text across all modern browsers, including Safari, Chrome, FF, and IE (6, 7, 8, & 9.) The secret is to set the height and line-height to the same value. So, your CSS would look something like this: input { height: 30px; line-height: 30px; } Update: ‘line-height’ is only needed for IE7 and IE8. In some...
Jul 8th
5 notes
1 tag
Jul 1st
June 2011
3 posts
3 tags
CSS: Target Firefox Only
I’ve had a few instances lately where I needed to target Firefox only in my CSS stylesheet. This is the best method I’ve found: /* Target Firefox Only */ @-moz-document url-prefix() { #selector { margin-top: 100px; } }
Jun 24th
2 notes
1 tag
Jun 17th
May 2011
1 post
Goodbye WordPress, Hello Tumblr!
That’s right folks, I’m done with WordPress, at least for now. Decided to go with a simple website. This time, my site is powered by Tumblr.
May 11th
June 2010
1 post
1 tag
Jun 14th