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

From this menu, is there a way to remove the words and leave only the icons? (like on facebook and twitter

2 Likes

I dont think so but you can probably do this with a theme component

Which component is it? Is it just the icons?

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

Yes, and we’ll update those soon so they have the same structure.

1 Like