Reply to thread

[ATTACH=full]47337[/ATTACH]

 

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;

}[/CODE]

 

To fix this we can apply the <body> line-height to the <p> element:

 

[CODE].xenForm .ctrlUnit .submitUnit dd p

{

    line-height: 1.28;

}[/CODE]


Back
Top Bottom