CSS Layout Templates

I ran across this site that presents 40 different layout templates that you can use with your web projects. Check them out! http://blog.html.it/layoutgala/

Javascript OO Programming 101

In our current era where AJAX and DHTML become common practice on site development, the role of JavaScript becomes more and more important. As we add more complexity to this scripting language, it is almost necessary for us to write better scripting code to enable us avoiding programming nightmare where javascript functions are all [...]

Setting Min-Width on IE6 (IE Hack)

There are circumstances that you would like to setup a minimum width of your content so that when user reduce their window, your content width will not shrink below that width. Unfortunately, there is bug on IE 6 where min-width is not supported. There is a work around on this bug.
Getting this to [...]

Image Replacement

As we know for SEO perspective, it is always better to have all the heading in text and format it using the stylesheet to appear the way you want it. But what if you really want to display the heading using image because the need of fancy font or format? Or, may be [...]

Browser specific selector

For this week tip, it is about how to create different selector or CSS rule based on different browser. This allows you to make exception such as do this width for default and this other width for IE only.
Basic Syntax
IE 6 and below
* html {}
IE 7 and [...]