Clayton Felt.com

Interesting things I'm doing

Archive for April, 2009

JQuery equal height columns

Columns of equal height

I was frustrated trying to find an easy way to make all my columns the same height. I finally just put together a simple jQuery script to do just that, without using a jQuery plugin.

Note: This post was updated 1/8/14 for the newest version of jquery, and cleaned up the post. If you view source on the Demo, you can get a clean copy of the entire file.
Continue Reading

Posted in Web Design3 Comments

Unorderd List in IE6

To get an unordered list in vertical form to render properly in IE6:

ul, li                {overflow: hidden;list-style: none outside;}
a             {display: block;height: 1em;}

Posted in CSS, Web DesignComment on this post