Is there a way to hide the horizontal separators on the signup and profile pages? I tried to add a site.css file with Code: legend { display:none; } but that did not help. Anyway, it's way to wide a net. I assume I should customize the theme, but I have no idea which file to override. Note: I have enabled "Use wordpress theme".
You need to check source code of your signup form and find ID for this legend tag. It should be something like row-address-0-legend. And then in site.css use the following CSS Code: #row-address-0-legend { display: none; } This way your CSS will affect only necessary legend and also this selector is enough specific to get more priority against default styles. Another approach is using !important statement in your CSS rule but this way all legend tags on your site will be hidden. I do not believe it is desired behaviour. Code: legend { display:none !important; } Best Regards!