@RobinP: Tales of the Savage Cows? WTF? Anyway it looks absolutely beautiful. I was going to ask how you got that screen resolution with RMVX, but since you said it's a custom game engine, I'm instead going to ask you how you dealt with autotiles, both with mapping and with animation. Did you write a mapping tool or are you using RMVX for mapping? How does the engine animate the tiles?
@Tomas: I suspect the issue with menu items (I'm assuming you mean the inventory grid) is a particularly annoying layout "feature" of HTML. If each item is represented as an inline image or inline-block image, the browser will display any space between the elements in the source code. To prevent this, one either has to switch to a floating block model or change the markup from this:
<div class="html" id="{CB}" style="font-family: monospace;"><ol>
<span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p>
<span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p>
<span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p>
<span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p>
To this:
<div class="html" id="{CB}" style="font-family: monospace;"><ol>
<span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p
<span style="color: #000000; font-weight: bold;">><span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p
<span style="color: #000000; font-weight: bold;">><span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p
<span style="color: #000000; font-weight: bold;">><span style="color: #009900;">[url=http://december.com/html/4/element/p.html]<span style="color: #000000; font-weight: bold;"><p>[/url]I'm a paragraph!<span style="color: #009900;"><span style="color: #000000; font-weight: bold;"></p>
I forget if that's exactly how it's done, but the idea is to eliminate spaces between the closing caret and the next opening caret.
@dadevster: I don't think it's an opposition to scroll bars in general, but rather an opposition to the Windows-style scrollbars instead of theming them to match the application. Unfortunately there isn't any good way to theme scrollbars that doesn't sacrifice usability; at least, I've never seen one. You'd have to completely re-implement scrolling with Javascript, and when I've seen it done it never taps into the mouse scroll wheel. I don't even know how you would do that in Javascript. It's unfortunate that the scrollbar styles in IE6 never became part of any web standards; just one more thing about IE6 that was actually kind of nice but completely pointless or even counterproductive because it wasn't a standard (like the box model, which usually breaks standards-compliant websites but I think the IE6 model makes more sense).