Hello guys,
I’ve been working on a vCard template lately and it looks great in Firefox but I am having some problems in IE6 . I honestly have no idea where to starts.
Live preview: http://bcproducties.xtreemhost.com/vCard/
Looks in IE6 : http://bcproducties.xtreemhost.com/uploads/ie6problems.jpg The slide effect is also not working correctly in IE6 .
Some tips please? 
zoom:1; 
Didn’t change anything. :/
Try this!
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js" type="text/javascript"></script>
<![endif]-->
Hi
There are many layout problem. If you want to fix it you can learn boxhack, hasLayout etc. for IE6
Tips:
1 – Use voice-family for box hack
Wrong
header {
-moz-background-clip:border; -moz-background-inline-policy:continuous; -moz-background-origin:padding; background:transparent url(../img/BG_header.png) no-repeat scroll 0 0; height:77px; padding:20px 25px; width:420px; }
True
header {
-moz-background-clip:border; -moz-background-inline-policy:continuous; -moz-background-origin:padding; background:transparent url(../img/BG_header.png) no-repeat scroll 0 0; height:117px; padding:20px 25px; width:470px; voice-family:”\”}\””; voice-family:inherit; height:77px; width:420px; }
2 – Don’t use png image for selected navigation item
You use png images for selected menu item but don’t forget png images don’t give positon like left or bottom parameter on ie6 because of it use progid:DXImageTransform.Microsoft.AlphaImageLoader filter.
3 – Set fixed width floated element 4 – Use clearfix method for float element 5 – Etc.
Like valtinsbad said, boxhack would help you.
BTW , i think browserhacks aren’t good for SEO , right?
What’s with that ‘block the IE6 ’ action? Any one support it here on the forums? A world without IE would be sooo much easier 
Thanks a lot guys! Interesting script Meshach 
