# Customize navbar "more" button

**URL:** https://community.glideapps.com/t/customize-navbar-more-button/73577
**Category:** Ask for Help
**Created:** [May 22, 2024, 6:03pm UTC](https://community.glideapps.com/t/customize-navbar-more-button/73577 "2024-05-22T18:03:56Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Rez](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rez/32/75547_2.png) [@Rez](https://community.glideapps.com/u/Rez)
#### Post date: [May 22, 2024, 6:03pm UTC](https://community.glideapps.com/t/customize-navbar-more-button/73577/1 "2024-05-22T18:03:56Z")

</div>

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??

 ![Screenshot 2024-05-22 at 20.02.54](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/d/a/da7365f1c155fe4e5b693b141d9738b5a2ce1129.png)

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [May 23, 2024, 12:27am UTC](https://community.glideapps.com/t/customize-navbar-more-button/73577/2 "2024-05-23T00:27:07Z")

</div>

Please try this with CSS.

```auto
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;
}

```

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/7/b/7b2646acd5cf11c23c2946965c7f0c4458f2c622.png)
