Re: CTA buttons that are not images

Jamie_Barclay
Level 5

CTA buttons that are not images

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

4 REPLIES 4
Josh_Hill13
Level 10 - Champion Alumni

Re: CTA buttons that are not images

In the default form editor?

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

Grégoire_Miche2
Level 10

Re: CTA buttons that are not images

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

Jamie_Barclay
Level 5

Re: CTA buttons that are not images

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

Jennifer_Bisho1
Level 4

Re: CTA buttons that are not images

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>