diff --git a/src/header.pug b/src/header.pug
index 152e5677ed368e81f9c62af1f904c5e138eb4115..a5b5db5dfacd2759379bef7c916b7739283ba8b4 100644
--- a/src/header.pug
+++ b/src/header.pug
@@ -2,10 +2,10 @@
   sib-link(next='members')
     img(src='/images/logo.png' width=111 height=32)
 
-#search-bar
-  input#search-input(type='search')
-  i#search-icon.icon-magnifier(aria-hidden='true')
-  i#close-search-icon.icon-close(aria-hidden='true')
+//- #search-bar
+//-   input#search-input(type='search')
+//-   i#search-icon.icon-magnifier(aria-hidden='true')
+//-   i#close-search-icon.icon-close(aria-hidden='true')
 
 sib-notifications(
   id-suffix="inbox",
@@ -21,12 +21,9 @@ details#user-controls
       widget-account.picture='hd-user-avatar',
       bind-user
     )
-  #user-controls__panel
-    include page-user-panel.pug
 
 button(role='log in' onclick="document.querySelector('sib-auth').login();") Login
 
-
 sib-auth
   sib-auth-provider(
     class="sib-auth-provider"
diff --git a/src/index.pug b/src/index.pug
index 0a96eec1a60731b8ab85faf71b7ccaec6613e610..a67f96c6c6c746e3e3fc99c6ad364bdc686d8454 100644
--- a/src/index.pug
+++ b/src/index.pug
@@ -33,9 +33,3 @@ html(lang="en")
 
         #member-chat(hidden).with-sidebar
           include page-member-chat.pug
-
-        #user-profile(hidden)
-
-        #user-settings(hidden)
-
-        #user-admin(hidden)
diff --git a/src/page-circle.pug b/src/page-circle.pug
index a8fd84d4ce9e5b0145a5d1543d723366801760a0..1015a5be788811b043871fce31ee5caa7c8e0827 100644
--- a/src/page-circle.pug
+++ b/src/page-circle.pug
@@ -19,8 +19,8 @@ nav.jsRightMenu(role='navigation')
         li
           a Information
       sib-route(name='circle-edit')
-        li
-          a Edit
+      //-   li
+      //-     a Edit
       sib-route(name='circle-create')
-        li
-          a Add new
\ No newline at end of file
+      //-   li
+      //-     a Add new
\ No newline at end of file
diff --git a/src/page-project.pug b/src/page-project.pug
index ec2e276ddef10686a5662f26a476c649c10b03f6..6c6b720fc42b220b2a8588aef4139a7516405e2a 100644
--- a/src/page-project.pug
+++ b/src/page-project.pug
@@ -19,8 +19,8 @@ nav.jsRightMenu(role='navigation')
         li 
           a Information
       sib-route(name='project-edit', use-id)
-        li 
-          a Edit
+      //-   li 
+      //-     a Edit
       sib-route(name='project-create', use-id)
-        li
-          a Add new
\ No newline at end of file
+      //-   li
+      //-     a Add new
\ No newline at end of file
diff --git a/src/page-user-panel.pug b/src/page-user-panel.pug
index efec855e0bb118ee976a2f9e6e6c2aa1f539a668..0cb52533ac46c9d4db4a7f512c0200913169ee3a 100644
--- a/src/page-user-panel.pug
+++ b/src/page-user-panel.pug
@@ -1,13 +1,13 @@
-nav(role="user's functionalities menu")
-  sib-router
-    ul
-      sib-route(name='user-profile')
-        li
-          a(href='#') My profile
-      sib-route(name='user-settings')
-        li
-          a(href='#') Settings
-      sib-route(name='user-admin')
-        li
-          a Admin
-    button(role='log out' onclick="document.querySelector('sib-auth').logout();") Log out
+//- nav(role="user's functionalities menu")
+//-   sib-router
+//-     ul
+//-       sib-route(name='user-profile')
+//-         li
+//-           a(href='#') My profile
+//-       sib-route(name='user-settings')
+//-         li
+//-           a(href='#') Settings
+//-       sib-route(name='user-admin')
+//-         li
+//-           a Admin
+//-     button(role='log out' onclick="document.querySelector('sib-auth').logout();") Log out
diff --git a/src/scripts/index.js b/src/scripts/index.js
index 7146e971d7e0fc133f88575b912ac70c7eb52d18..3874ebb55de2d50de461d04abd073f7831f30ecb 100644
--- a/src/scripts/index.js
+++ b/src/scripts/index.js
@@ -3,6 +3,10 @@ document.addEventListener('DOMContentLoaded', function (event) {
   const rightMenus = Array.from(document.querySelectorAll('nav.jsRightMenu'));
   const viewsContainer = Array.from(document.querySelectorAll('.views-container'));
 
+  window.addEventListener('navigate', (event) => {
+    //- View change event
+  });
+
   //- Toggle sub-menus
   menuWrappers.forEach(menuWrapper => {
     const menu = menuWrapper.querySelector('.menu');
diff --git a/src/styles/base/header.scss b/src/styles/base/header.scss
index c9bafca851c55e23e2b775dcd8ef6b70430a5e9f..6acb80a560e3a67bb25e2b84918aaadb36c3e95d 100644
--- a/src/styles/base/header.scss
+++ b/src/styles/base/header.scss
@@ -61,7 +61,7 @@
 }
 
 details {
-  cursor: pointer;
+  // cursor: pointer;
 
   summary {
 
@@ -106,11 +106,11 @@ details {
 
 details#user-controls {
 
-  summary:focus {
-    background-color: $color-233-18-29;
-    color: $color-0-0-100;
-    outline: none;
-  }
+  // summary:focus {
+  //   background-color: $color-233-18-29;
+  //   color: $color-0-0-100;
+  //   outline: none;
+  // }
 
   #user-controls__profile {
     div {
@@ -131,7 +131,7 @@ details#user-controls {
       }
 
       sib-display-value[name='first_name'] {
-        @include icon('arrow-down');
+        // @include icon('arrow-down');
         align-items: center;
         display: flex;
         flex-direction: row-reverse;
@@ -185,23 +185,23 @@ details#user-controls {
     }
   }
 
-  &[open] {
-    background-color: $color-233-18-29;
-    color: $color-0-0-100;
+  // &[open] {
+  //   background-color: $color-233-18-29;
+  //   color: $color-0-0-100;
 
-    #user-controls__profile {
+  //   #user-controls__profile {
 
-      div {
+  //     div {
 
-        sib-display-value[name='first_name'] {
-          @include icon('close');
+  //       sib-display-value[name='first_name'] {
+  //         @include icon('close');
 
-          &::before {
-            margin-left: 1.5rem;
-          }
-        }
-      }
-    }
-  }
+  //         &::before {
+  //           margin-left: 1.5rem;
+  //         }
+  //       }
+  //     }
+  //   }
+  // }
 }