How do I change the color of a Marketo Form | Community
Skip to main content
December 5, 2015
Solved

How do I change the color of a Marketo Form

  • December 5, 2015
  • 1 reply
  • 2016 views

Hi All:

I want to change the font color on my form but cannot figure out how to do this.

Any suggestions?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman

The color is set via an inline style (attribute) on the form tag.

To override it, you can

[1] use !important:

.mktoForm {

  color: red !important;

}

[2] use a more specific CSS selector

[3] disable the style using JS

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
December 5, 2015

The color is set via an inline style (attribute) on the form tag.

To override it, you can

[1] use !important:

.mktoForm {

  color: red !important;

}

[2] use a more specific CSS selector

[3] disable the style using JS

December 6, 2015

Thanks!  That worked like a charm!