Posts Tagged ‘ie’

My IE testing setup in a nutshell (for WordPress)

Here is my setup for handling irregularities in IE, when developing WordPress themes. [sourcecode language="html"] <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" /> <!–[if IE]> <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_directory’); ?>/css/tripoli.simple.ie.css") /> <![endif]–> <!–[if lte IE 6]> <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_directory’); ?>/css/ie6.css" type="text/css" media="screen"> <![endif]–> <!–[if IE 7]> <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_directory’); ?>/css/ie7.css" type="text/css" media="screen"> <![endif]–> <!–[if [...]