How can I add hyperlinks to images on my website?

Hiya, on our website a template page was built to show 5 logos in a hexagonal border, however none of the logos have the option to include a hyperlink. I wonder how do you set that up?

This is the page:

We’d like to be able to click those logos and they would take you to each association’s website.

Changing the image is the only option available in the Customize Store:

Is it possible to add the option of adding a link?

Thanks in advance!

To add hyperlinks to the logos on your website’s template page, you’ll need to edit the HTML code of the page. Here’s a general guide on how to do it:

  1. Access your website’s backend or content management system.

  2. Locate the HTML code for the template page that displays the logos.

  3. Look for the section of code that corresponds to each logo. It might be an <img> tag or a <div> container.

  4. Add an <a> tag around the logo code to create a hyperlink. For example:

[
  
](https://www.example.com)
  1. Replace [https://www.example.com](https://www.example.com) with the actual URL of the association’s website, and path_to_logo_image with the path or URL of the logo image.

  2. Repeat the process for each logo, adding the appropriate URL and image source.

  3. Save the changes to the HTML code and preview the page to ensure the hyperlinks are working as expected.