SaveASmile.co.ukEach day, thousands of families throughout Britain deal with the consequences of bullying, and can find little in their lives to smile about. But, with a little help from YOU, we can make a difference.
New CCKW LayoutThe new layout is here, ore enhancements will be coming in the near future.
Its sometimes that little bit neccesary to make sure your columns have the same height. This simple snippet can be added to any page to even out the heights of the columns.
- columnSelector = ".column";
-
- $(columnSelector).each(function(){
- if(parseInt($(this).height()) > parseInt($(this).css("min-height"))){
- $(this).css("min-height",$(this).height());
- }
- $(columnSelector).css("min-height",$(this).css("min-height"));
- });