How to implement :first-child for IE6

Posted August 12th, 2010 by admin and filed in Uncategorized
Tags: ,
Add a Comment

JQuery kwicks

Posted August 3rd, 2010 by admin and filed in Uncategorized
Tags:
Add a Comment

PIE and Internet Explorer 6-8

Posted July 23rd, 2010 by admin and filed in Uncategorized
Add a Comment

I needed to get code appear in IE 6-8, for a new RPG we’re making. PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.

http://css3pie.com/

How to Check Font Type & Size Used on a Website Without Investigating the CSS

Posted June 28th, 2010 by admin and filed in Uncategorized
Tags:
Add a Comment

Browser Compatibility Check for Internet Explorer Versions from 5.5 to 8

Posted September 2nd, 2009 by admin and filed in Uncategorized
Add a Comment

Here you can find a rally good solution, how to check all versions of Internet Explorer
http://www.my-debugbar.com/wiki/IETester/HomePage

JQuery Nice Form

Posted August 24th, 2009 by admin and filed in Uncategorized
Add a Comment

I founded really good JQuery Nice Form:

http://www.whitespace-creative.com/jquery/jNice/

Used it on the new online RPG we’re making.

CSS hack for IE8

Posted June 5th, 2009 by admin and filed in Uncategorized
1 Comment

IE8 Standards-Mode Only:

.test { color /*\**/: blue\9 }

All IE versions, including IE8 Standards Mode:

.test { color: blue\9 }

The full post is here: http://my.opera.com/dbloom/blog/2009/03/11/css-hack-for-ie8-standards-mode

CSS min-height for all browsers

Posted June 5th, 2009 by admin and filed in Uncategorized
Add a Comment

height: 100% !important; /* for modern browsers */
height: 300px; /* for IE5.x and IE6 */
min-height: 300px; /* for modern browsers */