Homepage Image Clickable

How can I make the main image on the homepage clickable without a button?

We are using pipeline.

Thanks!

Hi @Mg71 !

You can make an image clickable by wrapping it in an a tag and specifying the URL. Here’s an example in HTML:


    

In the a tag’s styling, adding a cursor: pointer will make the image look clickable. Example:

a img {
    cursor: pointer;
}

Hope this helps!

footnotes.com I’d like the top image on desktop and mobile to be clickable without a button. Thanks!

That didn’t work. I need it to be clickable for different images on mobile and desktop. The top main image on the homepage here on footnotes.com

Can you show me how?