Re: Editing form Fieldset

Anonymous
Not applicable
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
Anonymous
Not applicable
Thank you it worked!
 
Edward_Unthank_
Level 10
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
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
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