This tutorial will walk you through creating date badges with WordPress and CSS.

Let's start of by adding the necessary markup to render the appropriate date format. Create a DIV element with a class of "entryDate" and three children SPANs with respective classes "postMoth", "postDay", and "postYear".
Add the PHP code to get the post date from the database as shown bellow. For more PHP date format go to http://us.php.net/date
Markup
<div class="entryDate">
<span class="postMonth"><?php the_time('M') ?></span>
<span class="postDay"><?php the_time('d') ?></span>
<span class="postYear"><?php the_time('Y') ?></span>
</div>
Now let's add styles to make it look pretty.
read more »
Last week's websites that I stumble upon. Some design related, development and completely off beat topic. If you have a link that you'd like me to share with others feel free to send it me.
Web Design & Web Development
PX to EM conversion made simple. Very handy website.
Web Design & Development books reviews and interviews.
iPhone & iPod Touch Wallpapers
Lots of typography wallpapers for both iPhone and desktop.
Last week's websites that I stumble upon. Some design related, development and completely off beat topic. If you have a link that you'd like me to share with others feel free to send it me.
Inspiration
Huge stock illustration site
Portfolio of Jessica Hische a fantastic illustrator and designer, don't forget to visit her blog.
Portfolio of Stephen Kelleher check out his illustration.
read more »
A lot of times I end up with a bunch of objects all over in the same layer and it becomes very difficult to select them. That's when “Select by Fill Color” comes in handy.
Choose Unused Color
Choose an unused color and draw your objects.
read more »