Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Image Modified
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

    .

    :

    Code Block
    languagexml
    <html>

...

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

...

  1. 
          }