I am including a conditional comment in my code to solve a couple of problems in IE 6. The site has two themes (two style sheets) one for night and one for day so a javascript file is linked in the head of the page rather than the style sheets directly.
However not all of the styles in the IE 6 style sheets override those in the standard style sheets. Is there a way to make IE 6 ignore the previously linked Javascript file?
What I have is...
<script type="text/javascript" src="js/themechanger.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript" src="js/iethemechanger.js"></script>
<![endif]-->
However not all of the styles in the IE 6 style sheets override those in the standard style sheets. Is there a way to make IE 6 ignore the previously linked Javascript file?
What I have is...
<script type="text/javascript" src="js/themechanger.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript" src="js/iethemechanger.js"></script>
<![endif]-->