Hide the logout button on the custom portal
You can hide the logout option for your custom portal that appears in the Employee Center tab within Microsoft Teams.
Before you begin
Role required: admin
Procedure
Navigate to All > Service Portal > CSS.
Click on your custom CSS.
Click here to edit the CSS.
Image omitted: edit-css-2.png
Edit CSS
Edit CSS
To disable the logout button from Microsoft Teams desktop application.
Customize the following code as required and paste in the CSS.
/* Embedded portal */ /*The code shared to disable the logout button is an example. You need to customize as required to disable logout button.*/ .embedded-experience .avatar-drop-down .header-menu-item:last-child { display: none; }To disable the logout button from Microsoft Teams mobile application.
Customize the following code as required and paste in the CSS.
/* Embedded portal */ /*The code shared to disable logout button is an example. You need to customize as required to disable logout button.*/ .embedded-experience .impersonate-and-logout { div > ul > li:last-child { display: none !important; } }Click Update.
Refresh the custom portal tab in Microsoft Teams.
Parent Topic:Embed a custom portal