How can I make my homepage banner image clickable?

Hi!

On my home page of my store www.daughterofanangel.com I am trying to make the image banner at the bottom on the site (Shop pay banner) clickable and link to my Buy now, Pay Later FAQs page

Thank you!

Hi @jennarose

To make the banner image clickable, you can try the following:

  1. Online Store → Themes → Edit code
![view (16).png|1802x841](upload://llGf5jg9kcFHBXBJxd0ZZE8thRC.png)
  1. Find the file image-banner.liquid, find the class banner__box, and wrap that class inside tag with href as the link you want to add and click Save.
....
   
       

             ......
       

   
....
  1. Next, find the file base.css and add this code at the end of the file:
.section .banner__box {
    display: block;
    opacity: 0;
}

Your banner image will be clickable.

We hope that this can help you.