The fieldset area is not directly available in CF7. Max told me that you can 'simulate' that using either a 'Segment' or 'Message' area. That works fine but be aware that it does not generate the HTML form fieldset element.. CF7 using a div element instead.
It works fine

but one gotcha is that any css references to fieldset need to be modified to include a div definition
Nick
<div class="ui segment njjoFieldSet" id="area_segment_8" data-vtype="area_segment" data-uid="8">......
It works fine

but one gotcha is that any css references to fieldset need to be modified to include a div definition
fieldset.njjoFieldSet,
div.njjoFieldSet{
padding:5px !important;
margin:5px !important;
border:solid thin grey !important;
border-radius:10px !important;
width:99%;
color:black !important;
background-color: transparent !important;
}
Nick
You need to login to be able to post a reply.
