Hello!
Can I somehow put an empty line below the agreement checkbox with the "I accept the terms of the agreement" text in the Register.template.php?
I want to have some space before the privacy policy text begins.
Does it work with a  < br /> somewhere in between?
	if (!empty($context['agreement']))
	{
		echo '
			<h2 class="category_header">', $txt['registration_agreement'], '</h2>
			<div class="well">
				<p>', $context['agreement'], '</p>
			</div>';
	}
	if (!empty($context['privacy_policy']))
	{
		echo '
			<h2 class="category_header">', $txt['registration_privacy_policy'], '
			</h2>
			<div class="well">
				<p>', $context['privacy_policy'], '</p>
			</div>';
	}