SOLVED

Can you hyperlink an image on a Hero Guided Template?

Go to solution
Ryan_Garcia
Level 2

Can you hyperlink an image on a Hero Guided Template?

I am using the marketo guided template 2-A and am trying to hyperlink one of the template elements. While I am able to add a hyperlink to that element, it is not using the URL variable that I entered. I have gone through all the code to set it up based on what I read in community and even tried copying what other templates used to hyperlink an image. And it looks to be correct. However, I am unable to determine what I am doing wrong for it to utilizing a different URL. Here is a screenshot of the code and location of the element I am trying to add a hyperlink too:

9-28-2017 4-19-22 PM.png

9-28-2017 4-19-08 PM.png

Here is a screenshot of the element and variable. I entered marketo's URL as the variable, but the image is adding "na-ab.19....." And I don't know why.

template element_image.png

I am coding the element wrong? Or do I need to code in a completely different element to hyperlink an image.

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
Nicholas_Manojl
Level 9

Re: Can you hyperlink an image on a Hero Guided Template?

you'll need to add http:// to the template or to the URL variable.

View solution in original post

4 REPLIES 4
Justin_Cooperm2
Level 10

Re: Can you hyperlink an image on a Hero Guided Template?

Should work when you approve it or preview it, right? The links won't work directly from the editor window.

Justin

Nicholas_Manojl
Level 9

Re: Can you hyperlink an image on a Hero Guided Template?

you'll need to add http:// to the template or to the URL variable.

Ryan_Garcia
Level 2

Re: Can you hyperlink an image on a Hero Guided Template?

Well that was easy. Thank you Nicholas for providing such an easy solution to my over complicated problem.

Dave_Roberts
Level 10

Re: Can you hyperlink an image on a Hero Guided Template?

You might also want to add allowHtml="true" to your footer URL string variable.

--

Another way you could go about this would be to use the string variables inside the HTML <img> tag rather than using the mktoImg class.

Sometimes this is a better solution (it's more "locked-down") but not nearly as flexible as using the mtkoImg syntax - sometimes options are good, sometimes it leads to a series of bad combinations. If you really wanted to "control" the moving parts, you could just write the html and then swap out the pieces for string variables. Here's an example of that that might look like for a linked image:

<a href="${FooterLinkURL}" target="_blank" class="myImageLinkClass" style=" ...hard-coded styles here ... ">

    <img src="${FooterHeroSrc}" class="myImageClass" style=" hard-coded styles here ... " />

</a>

You'd support this with a few variables:

id="FooterLinkURL": string - default="http://www.marketo.com

id="FooterHeroSrc": string - default="http://www.fpoimg.com/800x300?text=Placeholder+Image"

You could write CSS in the <style> tag (or on an external stylesheet if that's how you do it) to give you some "access" to style the link and image without needing the pop-up editor [and thus the add'l syntax]. That might look something like this:

<style>

.myImageLinkClass {

    /*... add link styles here ...*/

}

.myImageClass {

    max-width: 100%;

    height: auto;

    border:2px solid #babf33;

}

</style>

---

again, this is a bit of a "fixed" or "locked-down" solution, but I thought I'd throw it out there to give you another way think about addressing this obstacle.