Category Archives: CSS

1140 Fluid Starkers WordPress Theme

I’m a huge fan of Elliot Jay Stocks’ Starkers WordPress Theme, and an even bigger fan of the 1140 CSS Grid, the absolutely fantastical fluid down to mobile grid framework. Today I needed them to marry and have a child, and this is what came of it:

I’m not really providing any documentation because both are pretty well documented. Derived from Elliot Jay Stocks’ Starkers Theme (http://starkerstheme.com/) and the 1140 CSS Grid (http://cssgrid.net/).

Click here to download now!

My own .clearfix concoction

I’ve been using this for years now. I just tried to use the more widely accepted clearfix to no avail. I like mine better. It always works.

br.clearfix, li.clearfix {
            display:block !important;
     float:none !important;
     height:0 !important;
     line-height:0 !important;
     font-size:1px !important;
     clear:both !important;
}

And I never have any trouble in any browser. There you go. Clear all the floats you want. Go ahead, see if I care.