ID:1820325
 
(See the best response by Lummox JR.)
I know this has come up before, but my forum searches have come up short. Is it possible to change the default browser to something more up to date? Is it possible to get CSS3 working inside the native browser?

No, it runs in IE7 compatibility mode to insure the most users are using the same system. However there's been discussion about updating it.
Ah okey. Thanks. I wasn't sure what version of IE it was in so at least that helps.
Best response
You can actually get CSS3 working. I just discovered this recently. Add this to your document header.

<meta http-equiv="X-UA-Compatible" content="IE=edge">

IE recognizes this and will render in the current version, if you also have a doctype at the beginning (just use <!DOCTYPE html>). Mind you, any players still on XP systems will be limited to IE 8 at best, so there may be limits to what you can achieve.
This should be stickied. You have changed my life, Lummox.
What do you mean CSS3? All CSS3 stuff including animations and transitions? border radius and opacity? I tried adding that to my DOM, but it doesn't seem to work for me.

EDIT: Nevermind, got them working. Great work, and thanks!