SOLVED

How can I hyperlink an image on a Landing Page

Go to solution
Anonymous
Not applicable

How can I hyperlink an image on a Landing Page

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?
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: How can I hyperlink an image on a Landing Page

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!

View solution in original post

6 REPLIES 6
SanfordWhiteman
Level 10 - Community Moderator

Re: How can I hyperlink an image on a Landing Page

Sure, insert an HTML element (not a simple Image element) and link it the same way you'd hyperlink anything.  
Anonymous
Not applicable

Re: How can I hyperlink an image on a Landing Page

And to confirm that to do so (add an HTML element), I would have to do so by coding it; correct?
SanfordWhiteman
Level 10 - Community Moderator

Re: How can I hyperlink an image on a Landing Page

You insert the element from the toolbox in LP Editor. Then within the HTML you can add whatever you want.
Alok_Ramsisaria
Level 10

Re: How can I hyperlink an image on a Landing Page

Hi Lacy, 

You could also import the image and hyperlink it to a desired URL by defining it in the property sheet.
Anonymous
Not applicable

Re: How can I hyperlink an image on a Landing Page

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!
Anonymous
Not applicable

Re: How can I hyperlink an image on a Landing Page

Thank you everyone for the comments and help - the links work!