> Im wondering if there's a way to block out IE 5 > Windows but not IE5.5?
Microsoft built a covenient IE-only hack into their browser engine - conditional comments. Check em out here: http://msdn.microsoft.com/workshop/author/dhtml/overview/ccomment_ovw.asp Essentially, you put in code like this: <!--[if lt IE 6]> <link rel="stylesheet" type="text/css" href="ie5winfix.css" /> <![endif]--> Everything else thinks it's a comment (actually it is) but IE will parse it. And you can certainly use that to target IE 5 but not 5.5... K. --- Kay Smoljak Senior Developer/QC Leader/Search Optimisation PerthWeb Pty Ltd - http://www.perthweb.com.au/ Ph: 08 9226 1366 - Fax: 08 9226 1375 ***************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help *****************************************************
