Customizing logo size on the login page

Hi peeps,

I am making my own exchange. I would like to make the custom logo look bigger on hollaex login page.
Is it possible to do so? if yes, how?

Thanks a lot,

1 Like

Hey! there’s an article on the customization feature: A coin like no other: Get to know XHT | by XionTheCreator | Dec, 2021 | Medium

1 Like

Hey!
You can enlarge the logo by injecting the following snippet into the admin consol HEAD section to override the style.

<style>
.icon_title-wrapper .auth_logo-wrapper {
    height:  10rem !important;
    width: 20rem !important;
}
</style>
6 Likes

Hi! Saw that you can customize your logo. Check the link below. :slight_smile:
https://docs.hollaex.com/how-tos/customize-exchange#plugin

2 Likes

Hello, I followed these instructions; however, when Published, the snippet is not retained by the platform, and the logo size is not changed? This seems like a simple snippet, what am I doing wrong. https://exchange.woolongs.com/login

2 Likes

So …the logo size can’t resized … true or anybody have the solution ? ( the link https://docs.hollaex.com/how-tos/customize-exchange#plugin say nothing useful for this )

2 Likes

@ahslr Did you find a code inject method for when you are inside the exchange? Footer and top nav bar?

1 Like

you could put these in the console section. The code snipper on the top changes your login/signup page logo size and the one at the bottom affects your footer size.

<style>
.icon_title-wrapper .auth_logo-wrapper {
    height:  10rem !important;
    width: 20rem !important;
}
</style>

<style>
.app_footer-container .footer-row-content .footer-logo {
    width: 15rem !important;
   height: 15rem !important;
}
</style>
2 Likes

Does it support animated graphics?

2 Likes

animated files are supported indeed :grinning:

animated-gif-hollaex-example-01

5 Likes