is it possible to use a different stylesheet for IE than the one i use for mozilla?Yes. There are a few ways to do this, but the best'd be to use a server side language, such as PHP, to detect the browser being used, and then output the correct HTML, linking to the correct CSS file, something like:
<style type="text/css">
<!--
@import "basicstyles.css";
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) { print "@import 'internetexplorer.css';";
} else { print "@import 'mozilla.css';"; }
?>
-->
</style>
Obviously, this isn't fully done out, and mainly just a c/p from the PHP manual, but I think it'll do for now.<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?s=&threadid=36424">http://www.webdeveloper.com/forum/showt ... adid=36424</a><!-- m -->
<style type="text/css">
<!--
@import "basicstyles.css";
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) { print "@import 'internetexplorer.css';";
} else { print "@import 'mozilla.css';"; }
?>
-->
</style>
Obviously, this isn't fully done out, and mainly just a c/p from the PHP manual, but I think it'll do for now.<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?s=&threadid=36424">http://www.webdeveloper.com/forum/showt ... adid=36424</a><!-- m -->