How to get rid of fieldset in forms?

Hi!

When I upgraded to 5.2.0, our login form get a fieldset. How can I get rid of it? I don’t want to have those borders there.

It seems that these changes to IForm came in changeset 1712, when upgrading GWT…

Cheers,

Kaitsu

Hi,

The fieldset element is part of the new layout design for Forms, as defined in Ticket #1712 (implemented in changeset 4627). The design is illustrated in the attachment
http://dev.itmill.com/raw-attachment/ticket/1712/FormLayoutDesign.pdf
.

I suppose it might be useful to have a form without the border. You can at least make the border invisible with “border-style: none”.

Notice also that you can use FormLayout without putting it inside a Form, if you don’t need the data binding services of the Form or the layout features.

Ok, thanks!

I solved this by just adding this to styles.css: fieldset { border: none; }

Cheers,

Kaitsu