Index: trunk/packages/invirt-web/code/static/style.css
===================================================================
--- trunk/packages/invirt-web/code/static/style.css	(revision 2803)
+++ trunk/packages/invirt-web/code/static/style.css	(revision 2804)
@@ -109,2 +109,9 @@
     display: inline;
 }
+
+/* styling for the results box */
+.result {
+    background-color: #e8e8ff;
+    border: 1px black solid;
+    padding: 1ex;
+}
Index: trunk/packages/invirt-web/code/templates/skeleton.mako
===================================================================
--- trunk/packages/invirt-web/code/templates/skeleton.mako	(revision 2803)
+++ trunk/packages/invirt-web/code/templates/skeleton.mako	(revision 2804)
@@ -67,13 +67,14 @@
 % endif
 
-<div id="result" class="result">
-% if result:
-${result}
-% endif
-</div>
-
 % if not simple:
 <h1>${self.title()} &mdash; XVM</h1>
 % endif
+
+% if result:
+<div id="result" class="result">
+${result}
+</div>
+% endif
+
 ${next.body()}
 % if not simple:
