coding error
Hi
I believe CSS Sculptor outputs some wrong code
look here in IE6
temp/
This is a straight out of the box 2 column fixed, right side bar with header and footer page, css saved to external style sheets.
in the conditional page code you have
<!--[if lt IE 7]>
<style type="text/css">
img, div {
behavior: url("file:///D|/webs/tester/2ColumnFixedRightSidebarHeaderandFooter0_images/iepngfix.htc");
}
</style>
<![endif]-->
surely this should be
<!--[if lt IE 7]>
<style type="text/css">
img, div {
behavior: url(2ColumnFixedRightSidebarHeaderandFooter0_images/iepngfix.htc);
}
</style>
<![endif]-->
Also is it safe for me to rename the folder from 2ColumnFixedRightSidebarHeaderandFooter0_images to something shorten and less clumsy
Roy