How can I hyperlink an image on a Landing Page | Community
Skip to main content
May 1, 2015
Solved

How can I hyperlink an image on a Landing Page

  • May 1, 2015
  • 6 replies
  • 4140 views
I am adding social media images to a landing page (the ones they had do not work) and I need to hyperlink them (as a "follow us" feature).  Does anyone know how to do that or if it is even possible?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by
Lacy,

Yes, you would have to add some HTML code if you select "Add an HTML element". It would look something like this:

<a href="www.yourwebsite.com"><img src="http://www.website.com/image.jpg" alt="Image Description" border="0" style="display:block; padding: 0; text-decoration: none;"></>

Just replace the bold areas with where you want the link to go, the URL of your image (you can find this in the Design Studio), and an appropriate description.

Hope this helps!

6 replies

SanfordWhiteman
Level 10
May 1, 2015
Sure, insert an HTML element (not a simple Image element) and link it the same way you'd hyperlink anything.  
May 1, 2015
And to confirm that to do so (add an HTML element), I would have to do so by coding it; correct?
SanfordWhiteman
Level 10
May 1, 2015
You insert the element from the toolbox in LP Editor. Then within the HTML you can add whatever you want.
Level 10
May 4, 2015
Hi Lacy, 

You could also import the image and hyperlink it to a desired URL by defining it in the property sheet.
Accepted solution
May 4, 2015
Lacy,

Yes, you would have to add some HTML code if you select "Add an HTML element". It would look something like this:

<a href="www.yourwebsite.com"><img src="http://www.website.com/image.jpg" alt="Image Description" border="0" style="display:block; padding: 0; text-decoration: none;"></>

Just replace the bold areas with where you want the link to go, the URL of your image (you can find this in the Design Studio), and an appropriate description.

Hope this helps!
May 4, 2015
Thank you everyone for the comments and help - the links work!