diff --git a/editors/editoria/src/layout/EditoriaLayout.js b/editors/editoria/src/layout/EditoriaLayout.js
index 05cb128f3e672feefbe305865aab9763e7428ef8..674bee9143088949e7a94d229b7bfa3b442c7c4a 100644
--- a/editors/editoria/src/layout/EditoriaLayout.js
+++ b/editors/editoria/src/layout/EditoriaLayout.js
@@ -163,12 +163,12 @@ const NotesContainer = styled.div`
 const WaxBottomRightInfo = styled.div``;
 const InfoContainer = styled.div`
   display: flex;
-  position: fixed !important;
+  position: fixed;
   bottom: 1px;
   right: 21px;
-  z-index: 1;
+  z-index: 999;
 `;
-const InfoArea = styled.div``;
+
 let surfaceHeight = 600;
 let notesHeight = 200;
 
@@ -193,6 +193,7 @@ const RightArea = ComponentPlugin('rightArea');
 const CommentTrackToolBar = ComponentPlugin('commentTrackToolBar');
 const WaxOverlays = ComponentPlugin('waxOverlays');
 const BottomRightInfo = ComponentPlugin('BottomRightInfo');
+
 const EditoriaLayout = ({ editor }) => {
   const {
     view: { main },
diff --git a/editors/editoria/src/layout/EditoriaMobileLayout.js b/editors/editoria/src/layout/EditoriaMobileLayout.js
index 6ca4687211f03f915830ea25d08ec92a1ad40587..c2df40828054b683f835d00124dbf994cc1872b6 100644
--- a/editors/editoria/src/layout/EditoriaMobileLayout.js
+++ b/editors/editoria/src/layout/EditoriaMobileLayout.js
@@ -147,19 +147,15 @@ const NotesContainer = styled.div`
     padding-right: ${grid(1)};
   }
 `;
-const WaxBottomRightInfo= styled.div`
-
-`;
-const InfoContainer= styled.div`
-display:flex;
-position:fixed !important;
-bottom:1px;
-right:21px;
-z-index:1;
-`;
-const InfoArea=styled.div`
-
+const WaxBottomRightInfo = styled.div``;
+const InfoContainer = styled.div`
+  display: flex;
+  position: fixed !important;
+  bottom: 1px;
+  right: 21px;
+  z-index: 1;
 `;
+const InfoArea = styled.div``;
 let surfaceHeight = 500;
 let notesHeight = 150;
 
@@ -181,6 +177,7 @@ const TopBar = ComponentPlugin('topBar');
 const NotesArea = ComponentPlugin('notesArea');
 const RightArea = ComponentPlugin('rightArea');
 const WaxOverlays = ComponentPlugin('waxOverlays');
+const BottomRightInfo = ComponentPlugin('BottomRightInfo');
 
 const EditoriaLayout = ({ editor }) => {
   const {
@@ -206,13 +203,6 @@ const EditoriaLayout = ({ editor }) => {
   return (
     <ThemeProvider theme={cokoTheme}>
       <Wrapper>
-
-      <WaxBottomRightInfo>
-          <InfoContainer id="info-container">
-            <BottomRightInfo/>
-          </InfoContainer>            
-         </WaxBottomRightInfo>
-
         <TopMenu>
           <TopBar />
         </TopMenu>
@@ -249,6 +239,11 @@ const EditoriaLayout = ({ editor }) => {
         </Main>
 
         <WaxOverlays />
+        <WaxBottomRightInfo>
+          <InfoContainer id="info-container">
+            <BottomRightInfo />
+          </InfoContainer>
+        </WaxBottomRightInfo>
       </Wrapper>
     </ThemeProvider>
   );