Remove title casing in forms

By Widget Pro

Add this quick line of CSS to your site.css file in developer mode to remove forced title casing on the contact forms.


.listItemTitle {
    text-transform: none;
}

Full length form titles

By Widget Pro

Add this quick line of CSS to your site.css file in developer mode to remove the ellipses in form titles.


*#dm div.dm-title h3 {
	white-space: normal;
}