Remove Title field on Web Forms in Business Catalyst (in both jQuery & CSS)

CSS

<style>
label[for=Title], select#Title
{display:none;}
table.webform td {line-height:normal;}
</style>

jQuery

$(document).ready(function() {
$(".selector label[for='Title']").parent().parent().find('td').remove);
});