How to Set Up Logos in Zoho Creator: Organization & Application Level

How to set up logos in Zoho Creator?

Two logo configuration options: 1. Organization Logo (account-level under Organization settings) 2. Application Logo (app-specific under Application Summary). New customization capability added for Application Logos beyond default initials.Setting up logos in Zoho Creator can be achieved in a few ways, depending on whether you want to add a company logo to forms or customize an organization's logo. Here's how you can do both:

Adding a Company Logo to Forms

You can add your company logo to forms in Zoho Creator using two methods: by using the logo's URL or from an existing image in the app. Here’s a step-by-step guide:

Using the Logo's URL

  1. Access the Form Builder: Open your form in the Zoho Creator form builder.

  2. Add a Notes Field: Drag and drop a "Notes" field from the special fields section. This field can display images.

  3. Create a Workflow:

    • Go to the "Editor" and create a new workflow.

    • Set the workflow to run when the form loads.

    • In the script, declare a variable for the logo URL and use it to populate the notes field with the logo image.

    • Specify the dimensions for the logo (e.g., width and height).

Example script:

text
image_URL = "https://example.com/yourlogo.png"; input.Add_Notes = "<img src=\"" + image_URL + "\" style=\"width:150px; height:100px;\">";

Using an Existing Image

  1. Fetch the Image ID: Store your logo in an "All Images" report. Right-click on the image and inspect to get its ID.

  2. Create a Workflow: Similar to the previous method, create a workflow to run on form load.

  3. Populate the Notes Field: Use the image ID to fetch the image and populate it into the notes field. Replace any masked parameters with valid application-specific ones.

Example script:

text
logo = getRecordById("All_Images", "Image_ID").Image; logo = logo.replace("shared", "app_link_name").replace("viewing_name", "All_Images").replace("field_name", "Image"); input.Add_Notes = "<img src=\"" + logo + "\" height=\"100px\" width=\"100px\">";

Customizing an Organization's Logo

To customize an organization's logo in Zoho Creator, follow these steps:

  1. Navigate to Organization Tab: Go to the "Organization" tab on the left side.

  2. Upload Logo: Click "Upload" below "Organization Logo" and select your logo image.

  3. Save Changes: Click "Update" to save any changes made46.

This process helps you set up logos both for branding on forms and for organizational identity in Zoho Creator.

Citations:

  1. https://help.zoho.com/portal/en/kb/creator/developer-guide/pages/panel/articles/configure-image-icon
  2. https://www.zoho.com/us/invoice/kb/general/upload-organization-logo.html
  3. https://www.youtube.com/watch?v=kGwUQA8mX2Y
  4. https://help.zoho.com/portal/en/kb/creator/developer-guide/organizations/articles/customize-organization-profile
  5. https://www.zoho.com/creator/videos/add-company-logo-to-your-form.html
  6. https://help.zoho.com/portal/en/kb/creator/developer-guide/organizations/articles/understand-organization-profile
  7. https://www.zoho.com.cn/creator/help/fields/configuring-an-image-field.html
  8. https://www.zoho.com/books/help/personalize/add-logo.html
  9. https://help.zoho.com/portal/en/kb/zoho-sign/admin-guide/branding-and-customization/articles/changing-the-organization-logo-in-zoho-sign
  10. https://www.youtube.com/watch?v=ozgPeygA5Fw
  11. https://help.zoho.com/portal/en/kb/iot/rebranding/logo-and-title-bar-customization/articles/logo-and-title-bar-customization
  12. https://help.zoho.com/portal/en/community/topic/how-can-i-show-an-image-as-logo-in-a-public-form
  13. https://help.zoho.com/portal/en/kb/commerce/user-guide/site-settings/general/articles/favicon-and-logo
  14. https://www.youtube.com/watch?v=7Y45vgEs3g0
  15. https://help.zoho.com/portal/en/community/topic/tip-of-the-fortnight-1-add-your-brand-logo-to-your-forms
  16. https://help.zoho.com/portal/en/kb/zohosites/help-guide/configuration/site-options/articles/logo-and-favicon
  17. https://www.youtube.com/watch?v=QB2fD-b-jB4
  18. https://www.youtube.com/watch?v=hfRKHnUFGDA

Answer from Perplexity: pplx.ai/share