Hi Enfold Team,
I would like to make adjustments to the menus of my website.
Unfortunately the menus page (appearance > menus) looks a bit strange. The text of the menu items is ‘messy’.
How can I change this?
Thanks.
Eefke
Hey Eefke,
Thank you for the inquiry.
Try to add this code in the functions.php file to hide the item type from the menu item container.
add_action('admin_head', 'ava_custom_admin_css');
function ava_custom_admin_css() {
echo '<style>
.menu-item-bar span.item-type.item-type-default {
display: none !important;
}
</style>';
}
Best regards,
Ismael