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
In the default form editor?
I'm sure you could build this out yourself with the right code.
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
thank you so much - I'll check it out.
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="http://www.marketo.com/" style="color: #ffffff; text-decoration: none;" target="_blank">VISIT MARKETO</a></td>
</tr>
</tbody>
</table>