Skip to main content
December 9, 2013
Question

LP - Podia v1 Marketo template.

  • December 9, 2013
  • 2 replies
  • 712 views
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
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

December 9, 2013
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!
December 9, 2013
That's looking pretty good!  Thanks!