Skip to main content
Level 5
June 22, 2016
Question

CTA buttons that are not images

  • June 22, 2016
  • 3 replies
  • 1689 views

Does Marketo have any botton-like images that are not images but show up like a CTA button, thereby making the button (image) show up as an image even if images turned off (allow prominent CTA with images off)? 

Thank you

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

Josh_Hill13
Level 10
June 22, 2016

In the default form editor?

I'm sure you could build this out yourself with the right code.

Grégoire_Miche2
Level 10
June 22, 2016

Hi Jamie,

Are you talking here about HTML buttons ?

You will have to build them in you templates. BTW, the new starter templates in the email editor 2.0 are full of such HTML CTA's.

And form buttons are also HTML, not images, AFAIK.

-Greg

Level 5
July 11, 2016

thank you so much - I'll check it out.

Jennifer_Bisho1
Level 4
July 12, 2016

Hey Jamie - what we do at my company is use HTML code to create a "button" by using a table.  Sometimes we add this code to the actual template and make the field mktEditable so it's easy for another person that does not have coding experience to edit the text and link in this "button."  Here's an example of the code we use:

<table cellpadding="10" border="0" align="center">

<tbody>

<tr>

<td style="width: 200px; background-color: #f47920; text-align: center; color: #ffffff; font-family: Arial,helvetica,sans-serif; font-size: 16;"><a href="marketo.com/" style="color: #ffffff; text-decoration: none;" target="_blank">VISIT MARKETO</a></td>

</tr>

</tbody>

</table>