Update the Look and Feel of Your Forms by Checking Out the Marketo Form Library | Community
Skip to main content
December 29, 2014

Update the Look and Feel of Your Forms by Checking Out the Marketo Form Library

  • December 29, 2014
  • 15 replies
  • 9127 views

The Form Library lets you style your forms with an up-to-date look and feel just by dragging and dropping the CSS into your Marketo landing pages or template.  As a side note, the Form Library ONLY styles input, textarea, and select (drop-downs) fields and NOT your radio buttons or check-box selections.

 

 

Here's how it works:

1. Choose a form from the table below by clicking on the image.
2. Download the zipped file to your desktop.
3. Open the file and upload the provided images into your Marketo image library.
4. Open the provided code and replace "mktoWeb" with your directory name.

 

Example:

 

<style>
.mktInput input, .mktInput select, .mktInput textarea  {
background: url(rs/mktoWeb/images/input_bg.png) repeat-x scroll 0 0;
border: 1px solid #D4D2D2 !important;
font-size:20px;
padding: 8px 10px;
cursor:pointer;
}

 

.mktInput input:focus, .mktInput select:focus, .mktInput textarea:focus  {
background: url(rs/mktoWeb/images/input_bgHover.png) repeat-x scroll 0 0;
}
</style>

 

5. Copy the code and paste in on your landing page by  choosing the Custom HTML option within the design studio.

 

Note: Some forms use CSS3 for styling. The style is supported in all major browsers except Internet Explorer. You will need to be using IE9 or higher for any form using CSS3.

Is this article helpful ?

YesNo


Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

Download code for this form

15 replies

May 29, 2018

Why is there not a way to view all the forms in my instance?

If I go Design Studio > Forms, it lists some, but not all, leaving me to search folder by folder in Marketing Activities.

May 30, 2017

Done!

SanfordWhiteman
New Participant
May 30, 2017

This isn't the right place for that question. Please ask it on Products and I'll answer there.

cjdst273
New Participant
September 1, 2016

Does anyone know how to center align forms?

April 5, 2016

How do you center align the forms?

March 23, 2016

Hey Yoav,

What is it that you are trying to accomplish? Putting the labels on the right side?

Yoav_Guttman1
New Participant
March 23, 2016

are there any other custom examples with CSS you can provide?

March 10, 2016

Hey Ben - I had a similar approach to moving the label over to the right. I used this in the CSS:

label {

      float: right !important;

}

March 10, 2016

I did this by applying custom CSS:

.mktoForm .mktoFormRow {

    float: left !important;

}

February 5, 2016

Also would like to know the answer to this question.