Fixed image component

How to fix image component so it stays fixed while visitor scrolls page up & down.
I need this feature to keep my logo fixed on top of page while visitor scrolls page up & down.

Do you want to use HTML for your app. There is a way to use your logo as the “tab name”.

I would like to use. But I do not have experience with HTML coding.

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