This code detects if the browser is Chrome and when it is it loads diffferent style sheet. If you test your pages on Mozilla you could have very minor differences in Chrome so you'll probably have to replace just few lines of code in the stylesheet:
<script type="text/javascript">
if (navigator.userAgent.toLowerCase().match('chrome')
document.write('<link rel="stylesheet" type="text/css" href="stylechr.css">');
</script>
stylechr.css is the Chrome stylesheet.
Last edited by george61; Sep 4th, 2010 at 11:12 am.
Reputation Points: 10
Solved Threads: 6
Junior Poster in Training
Offline 59 posts
since Jul 2010