IE7 arrives! RUN! Run quickly to your web pages and fix those holly hacks! I’m not sure how universal this fix is, but basically, re-write your * html rules as *+html. Here’s an example:
/* Essential Layout (IE Fix) */
* html #leftsidebar { left: 200px; /* RC fullwidth */ }
/* Essential Layout (IE7 Fix) */
*+html #leftsidebar { left: 200px; /* RC fullwidth */ }
See the fix in action on the GameBlog. Without the *+html hack, the left sidebar is displayed off screen.
sjcplskagirlie