How to remove the settings and sign out menu items from my menu

I’m trying to remove the part that says “spectroom” from my menu. it can with the hivepress plugin.

I tried inspecting it and came up with: A.hp-memu_item.hp-menu_item–user.account.hp-link. I don’t know how to remove this with css

Hi,

Please use these CSS snippets:

.hp-menu__item--user-account {
   display: none !important;
}

.hp-menu__item--user-edit-settings {
   display: none !important;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.