Can I remove the text from the tabs of the new navigation menu?

You can use the following CSS:

.user-activity-page .nav-pills li span {
    display: none;
}

It doesn’t hide certain texts which aren’t wrapped in a <span> and usually come from theme components or plugins. Those can’t be targeted with CSS.

2 Likes