Customize navbar "more" button

Hi there,

I’m developing an app with glide for danish users and therefor need as much as possible to be translated/customized to danish, button titles and so on.

I have two items under the menu tab, showing up on the navbar after clicking on “more”. Can “more” be costumized, so I can call it something in danish??

Please try this with CSS.

button[aria-haspopup="menu"] div[class*="desktop-nav-bar___StyledDiv4"] {
font-size: 0;
}

button[aria-haspopup="menu"] div[class*="desktop-nav-bar___StyledDiv4"]:before {
content: "Whatever you want here";
font-size: 14px;
}

3 Likes