Can I use multiple logos?
If you want to try the workaround you need to create a new theme and add the following CSS code that will override your current logo: http://prntscr.com/74agpj
- upload your primary logo in My account / Basic
- upload the other logo as any other image: https://niftyquoter.uservoice.com/knowledgebase/articles/250374-how-can-i-add-images
- create a new theme and copy&paste the CSS code from this page to the Custom CSS tab: http://prntscr.com/74agpj
- then change the URL of the image from "https://www.google.com/images/srpr/logo11w.png" to the actual URL of your other logo from step #2
- you may also want to modify the height of the logo (90px)
- you'll be able to use
this new theme only for some of your proposals or text
templates
The CSS code you need to copy&paste to your new
theme:
.logo-container img,
.company-logo img{
visibility: hidden;
}
.logo-container img{
height: 90px;
}
height: 90px;
}
.logo-container,
.company-logo{
background-position: center !important;
background-image: url("https://www.google.com/images/srpr/logo11w.png") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
}
.company-logo{
background-position: bottom !important;
}