On this form below the "Sign Up" button there is text that has a too big line-height (We will automatically associate...). It isn't consistent with all the other explanations in xenforo forms. This is due to this CSS that is inherited by the <p> element that contains the text:
Code:
.xenForm .ctrlUnit .submitUnit dd
{
line-height: 31px;
}
To fix this we can apply the <body> line-height to the <p> element:
Code:
.xenForm .ctrlUnit .submitUnit dd p
{
line-height: 1.28;
}