Ability to upload and display Logo in fixed top bar instead of the tab name

Any idea of how to view this in English.

1 Like

I appreciate that. Thanks a bunch, I will be sure to do so :slight_smile:

1 Like

Wil this Rich Text code still work in 2023? Trying to implement now with a logo image uploaded to Glide server, but not succeeding hmm…

<span/>
<style>
#app-root div[opacity='1'] {
  color: transparent; 
}
.nav-bar-root {
  content: "";
  display: block;
  background-image: url(URL);
  background-size: 70px 70px;
  background-repeat: no-repeat; 
background-position: center, center;
;}
</style>

The new Glide Apps won’t allow this to be rendered using Rich Text component.

CSS is available only on Business/Enterprise, but you gotta adjust it to fit with the way CSS works now. The same code most likely won’t work.

I found a new code that works in 2024.

Just paste this in your CSS in Appearance!

[class*="unified-nav-bar___StyledDiv"] {
    display: block !important;
}

[class*="mobile-tab-bar___StyledDiv"] {
    background-color: transparent !important;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 6px;
    border: 0px;
}

[class*="mobile-tab-bar___StyledDiv"]:first-of-type {
    background-color: transparent !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}