LP - Podia v1 Marketo template.

Anonymous
Not applicable

LP - Podia v1 Marketo template.

I am currently tring to build a landing page for a "Take a Tour".  

I have been using the above mentioned template from Marketo.  However the "Request a Tour" button seems to have a different template colour assigned to it.  I can not find where to edit this?

I need it to be branded with the correct colour.

Thanks in advance for any help.  The page is located here for reference.

http://info.equinix.com/LP_Podia_v1.html
Tags (1)
2 REPLIES 2
Anonymous
Not applicable

Re: LP - Podia v1 Marketo template.

Hi John, you'll need to add some CSS to the page to override the default button color. You can do that by pasting something similar to the following code into an HTML element. Replace the bold hex values with your brand colors:

<style>
input[type="submit"] {
background: #ffa200 !important;
border: 7px solid #f9bd4f !important;
}
</style>

Hope that helps!
Anonymous
Not applicable

Re: LP - Podia v1 Marketo template.

That's looking pretty good!  Thanks!