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:
Access the Form Builder: Open your form in the Zoho Creator form builder.
Add a Notes Field: Drag and drop a "Notes" field from the special fields section. This field can display images.
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:
textimage_URL = "https://example.com/yourlogo.png"; input.Add_Notes = "<img src=\"" + image_URL + "\" style=\"width:150px; height:100px;\">";
Fetch the Image ID: Store your logo in an "All Images" report. Right-click on the image and inspect to get its ID.
Create a Workflow: Similar to the previous method, create a workflow to run on form load.
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:
textlogo = 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\">";
To customize an organization's logo in Zoho Creator, follow these steps:
Navigate to Organization Tab: Go to the "Organization" tab on the left side.
Upload Logo: Click "Upload" below "Organization Logo" and select your logo image.
This process helps you set up logos both for branding on forms and for organizational identity in Zoho Creator.
Answer from Perplexity: pplx.ai/share