Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1335060

    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

    #1335172

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.