v2022I don’t need to display the username in the sidebar menu.
How can I remove it pls?Thanks
You may simply add CSS under HTML → Styles → User tab, e.g.
.user-panel {
display: none;
}
Hi
.user-panel {
display: none;
}
did not work, but the below did:
.user-panel {
display: none !important;
}
Thanks!