diff --git a/src/includes/entrepreneur/components/header.pug b/src/includes/entrepreneur/components/header.pug
index 9f6911cd5b1a9b86a9d35a99cfbff88d6b587d16..ab9b1d5aca7a5314be7c86572ea74fb9df2d141c 100644
--- a/src/includes/entrepreneur/components/header.pug
+++ b/src/includes/entrepreneur/components/header.pug
@@ -33,5 +33,5 @@
                             sib-link(next='entrepreneur-account')
                                 p My account
                         li
-                            sib-link.logout-button(next='entrepreneur-dashboard')
+                            a.logout-button
                                 p Logout
\ No newline at end of file
diff --git a/src/includes/mentor/components/header.pug b/src/includes/mentor/components/header.pug
index fc5efdc8fe5e1ab1651d294fde1b2504431de86d..758052bb07ffaf28869d4d2f6a757101366ff5d3 100644
--- a/src/includes/mentor/components/header.pug
+++ b/src/includes/mentor/components/header.pug
@@ -36,5 +36,5 @@
                             sib-link(next='mentor-account')
                                 p My account
                         li
-                            sib-link.logout-button(next='mentor-dashboard')
+                            a.logout-button
                                 p Logout
\ No newline at end of file
diff --git a/src/styles/index.scss b/src/styles/index.scss
index a3e264386a539f3ad8cede0884f4dfd91d8af320..3bb0c021f4947631860e2001632cae4a2480e75e 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -1365,7 +1365,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
     cursor: pointer;
 }
 
-.dropdownPanel {
+#header .flex .dropdownPanel {
     position: absolute;
     min-width: 150px;
     background-color: #444C4D;
@@ -1379,7 +1379,10 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
         margin:0;
         list-style: none; 
     }
-    sib-link{
+    a {
+        margin: 0;
+    }
+    sib-link, a{
         display: block;
         padding: 10px 20px;
         text-decoration: none;
@@ -1390,7 +1393,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
             margin: 0;
         }
     }
-    sib-link:hover{
+    sib-link:hover, a:hover{
         background: #2D3132;
     }
     li:not(last-child){