The best solution is to improve the speediness of your CSS. Try to avoid
wild card selectors in the CSS that IE7.js will try to fix.
e.g. If you are using min-width, then don't do this:
.column1 {
min-width: 10em;
}
do this instead:
div.column1 {
min-width: 10em;
}
Another example:
[type=text] {color: #897def;}
is better written:
input[type=text] {color: #897def;}
90% of the time this is the problem in slow loading pages.
-dean
No. IDs are faster than anything else.
-dean