Yes, you can change the alt text for the Help Center logo in Zendesk. To do this, you need to modify the HTML code in your theme.
Locate the logo div tag in the header.hbs template and update the alt attribute within the img tag. You can use the standard {{settings.logo}} placeholder to keep the process simple, allowing you to upload brand logos from the edit page without needing to upload them as new assets each time.
To change the logo return URL in your Zendesk Help Center, you need to edit the HTML in your theme. By default, clicking the logo image takes users to the home page, but you can customize this to redirect to a different URL. First, upload your logo…
Updating the logo URL in Zendesk involves a few key steps. First, upload your logo image to the Assets area and make a note of its URL. Then, access the Customize design section, click on Edit code, and select header.hbs from the templates list….
To find the correct path-to-image after uploading to assets in Zendesk, you need to access the Assets area where your image is stored. Once you've uploaded your image, make a note of its URL. This URL will be used in the HTML code to specify the…
In Zendesk, assets cannot be called from the script.js file because they need to be accessed directly from the template itself. If you're trying to dynamically change the logo based on URL parameters, you should move the function into a script tag…