Logo format - applies to Invoice and Website Builder
The size shouldn't be an issue when it comes to uploading a logo photo. However it is important that the photo is in a square format.
Here is a correct upload and an incorrect example
.
Logo size - applies to Website Builder
In order to enlarge the logo, you can add the following code on the Custom JavaScript section on the Website Builder - basics page
Quote
<script>
/*Code to change the LOGO and TITLE style of website*/
var styles = `
.navbar a.navbar-brand .brand img{
display: inline-block;
float: none;
height: auto;
max-width: 100px;
max-height: 100px;
margin: 0;
border-radius: 5px;
}
`
var styleSheet = document.createElement("style")
styleSheet.innerText = styles
document.head.appendChild(styleSheet);
</script>
Unquote
Comments
0 comments
Please sign in to leave a comment.