I\'ve looked everywhere but to no avail.
I got a in a form, which displays as I want in every browsers, except in Chrome. It\'s like it
If updating the templates is not possible, you can use this script, just wrap the legend tag inside a div tag
jQuery('legend').each(function() { jQuery(this).wrap( "" ); });
Hope this helps! Enjoy coding..