diff --git a/core/modules/macros/zoomer.js b/core/modules/macros/zoomer.js
index cd9432399..7fc9c9a5c 100644
--- a/core/modules/macros/zoomer.js
+++ b/core/modules/macros/zoomer.js
@@ -100,7 +100,15 @@ exports.handleEvent = function(event) {
exports.executeMacro = function() {
this.inZoomer = false;
- return $tw.Tree.Element("div",{},[]);
+ return $tw.Tree.Element("div",{
+ style: {
+ "position": "absolute",
+ "right": "0",
+ "top": "0",
+ "min-width": "16px",
+ "height": "100%"
+ }
+ },[]);
};
})();
diff --git a/core/templates/PageTemplate.tid b/core/templates/PageTemplate.tid
index a26e10409..c49186817 100644
--- a/core/templates/PageTemplate.tid
+++ b/core/templates/PageTemplate.tid
@@ -1,9 +1,13 @@
title: $:/templates/PageTemplate
-
-
-
+
<
<
+{{navigation-panel{
+<>
+}}}
+{{zoomer-panel{
+<>
+}}}
@@ -15,13 +19,5 @@ title: $:/templates/PageTemplate
-{{navigation-panel{
-<>
-}}}
-{{zoomer-panel{
-<>
-}}}
>>
-
-
diff --git a/tw5.com/wiki/styles.css.tid b/tw5.com/wiki/styles.css.tid
index 24d0b107b..d5d3daa3a 100644
--- a/tw5.com/wiki/styles.css.tid
+++ b/tw5.com/wiki/styles.css.tid
@@ -185,27 +185,3 @@ a.tw-tiddlylink-missing {
color: #fff;
background: #a55;
}
-
-body {
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
-}
-
-body.in-zoomer {
- -webkit-transition: none;
-}
-
-.zoomer-panel {
- position: absolute;
- right: 0;
- top: 0;
- min-width: 16px;
- height: 100%; /* Makes the element the same height as the body, since the body is position: relative */
-}
-
-body.in-zoomer .zoomer-panel {
- background: rgba(235,235,235,0.5);
-}
-
-body.in-zoomer iframe {
- visibility: hidden;
-}