Forum Moderators: mack
[edited by: encyclo at 11:12 am (utc) on Nov. 16, 2007]
[edit reason] no URLs thanks [/edit]
Try this link: [webmasterworld.com ]
Also, there is a nice browser for Windows called Maxthon ( Google it and download it if you want), and the good news is that, it works like IE 6. so chances are you can test your site on Maxthon and then it might work good on IE 6 as well.
Good luck!
through building loads of websites i've found the following code a good basis for multiple browsers.
<link rel="stylesheet" href="/includes/css/site.css" type="text/css" />
<!--[if IE 7]>
<link rel="stylesheet" href="/includes/css/ie.css" type="text/css" />
<![endif]-->
<!--[if lte IE 6]>
<link rel="stylesheet" href="/includes/css/ie6.css" type="text/css" />
<![endif]-->
you can then tweak to both IE 7 and 6 without messing with the base css which should always validate ;)
[quirksmode.org...]