nnhubbard
01-07-2008, 04:12 PM
I have created a style sheet that is only for IE6, but it seems to be not picked up by IE. Here is how I have it:
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0012/246/global.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0017/2384/scroller.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0003/2496/home.css" media="screen" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0013/11803/ie6.css" media="screen" />
<![endif]-->
If I put the IE styles in a <style> block they work, but why not in an external .css file?
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0012/246/global.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0017/2384/scroller.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0003/2496/home.css" media="screen" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="http://websrv.puc.edu/__data/assets/text_file/0013/11803/ie6.css" media="screen" />
<![endif]-->
If I put the IE styles in a <style> block they work, but why not in an external .css file?