Fixed image component

Before you use this, please keep in mind that Glide does not officially support HTML so they won’t support any cases of HTML breaks when they update their code.

You can try putting this in a rich text component and change the URL part to your logo’s image link.

<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>
2 Likes