Re: Editing form Fieldset

Anonymous
Not applicable

Editing form Fieldset

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. 
Tags (1)
4 REPLIES 4
Edward_Unthank_
Level 10

Re: Editing form Fieldset

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
Anonymous
Not applicable

Re: Editing form Fieldset

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".. 
0EM50000000Spsn.jpg
Edward_Unthank_
Level 10

Re: Editing form Fieldset

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. 

0EM50000000Spt2.jpg0EM50000000Spt7.jpg
 

Best,

Edward Unthank | Founder, Etumos
Anonymous
Not applicable

Re: Editing form Fieldset

Thank you it worked!