Skip to content

Can I use multiple logos?

The app doesn't support multiple logos / departments / divisions / companies. You can use the following workaround to use different logos for different proposals, but that won't solve other issues you'll probably run into.

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

  1. upload your primary logo in My account / Basic
  2. upload the other logo as any other image: https://niftyquoter.uservoice.com/knowledgebase/articles/250374-how-can-i-add-images
  3. create a new theme and copy&paste the CSS code from this page to the Custom CSS tab: http://prntscr.com/74agpj
  4. 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
  5. you may also want to modify the height of the logo (90px)
  6. 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;
}

.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;
}

Feedback and Knowledge Base