Skip to main content
January 28, 2015
Question

Editing form Fieldset

  • January 28, 2015
  • 4 replies
  • 2310 views
Is there any way to edit the appearance for Fieldset? Currenty it is boxed in with brackets, but the example in the article (https://community.marketo.com/MarketoArticle?id=kA050000000LH1dCAG)  does not show brackets. Just wanted to know if this can be edited. 
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

4 replies

Edward_Unthank_
Level 7
January 28, 2015
You can edit these with CSS. The selector will be:

<style>
.mktoForm fieldset { 
/* css goes here! */
}
</style>

An example of removing the border is:

<style>
.mktoForm fieldset {
border:none!important;
}
</style>
 

Best,

Edward Unthank | Founder, Etumos
January 28, 2015
Thanks Ed, 

There doesn't seem to be an area to edit this while building the form? The only area that I can think of to edit appears to be within the "label".. 
Edward_Unthank_
Level 7
January 28, 2015
Tammy, there are a few places you can put it, but here's a spot for you. If you go into the "Form Theme" section and click on the gear, you can get to "Edit Custom CSS." I put screenshots and the code that you need for this example. 


 

Best,

Edward Unthank | Founder, Etumos
January 29, 2015
Thank you it worked!