Changing Canvas Logo in Print Preview

By default the print preview page will display the Canvas logo as shown in the following image:


To change the Canvas logo on the print preview page to your app's logo, perform the following steps:

  1. Create an image file for the logo and place it in the app bundle.
  2. In the MobilePrintTemplate.html file, mention the logo file name in the printLogo class:

    <html>
      <head>
        <style>
          .printLogo
          {
            padding: 0px !important;
            height: 200px;
            width: 200px;
            background: url(headerlogo.svg) no-repeat 0px 0px;
          }