Hi!
Does anyone know how to resize an image logo with the new header block using custom code?
We have the option to pick between S, M, and L but none of them are making my logo large enough.
Thank you in advance
-Nathaniel
Hi!
Does anyone know how to resize an image logo with the new header block using custom code?
We have the option to pick between S, M, and L but none of them are making my logo large enough.
Thank you in advance
-Nathaniel
The following css should do the trick.
To be tested with different size (1.3 to be changed if necessary)
Code to be inserted in the header custom code, page or app level.
If the logo is inside the sidebar:
<style>
#sidebar-root img {
transform: scale(1.3);
}
</style>
If the logo is inside the topbar:
<style>
#topbar-root img {
transform: scale(1.3);
}
</style>
Amazing, thank you!!
Hi Nathan, do you mind sharing a image of what size you want to achieve for us to consider? A screenshot will help