How To Create WordPress Themes From Scratch 

I’m going to show you how to create a wordpress theme from scratch in these 3 parts of tutorial series. I will cover from Structuring, designing in Photoshop, slicing, coding into fully css based html, and finally wordpress implementation.

PNG FIX - PNG Fix for IE6 by MIME type 

There are a ton of PNG fixes out there and so far my favorite has been supersleight, however i mask the image source and filename that my clients use in a query so i can’t apply the default supersleight since it’s based on file extensions, so instead i made an add-on to check the MIME [...]

Simple Tabbing System 

Today, we are going to learn how to create simple tabbing system. It is a very common technique nowadays. Especially for those magazine site, news or blogs that contain a lot of sections or contents.

The right way to underline 

Instead of using “text-decoration: underline”, try using “border-bottom: solid 1px #000″ instead. That way you can also experiment with various border types (dotted, dashed, etc). Another great benefit of this method, is that it won’t cut through your descenders! Examples: a { border-bottom: dashed 1px red; } a { border-bottom: dotted 1px #333; }