I am trying to use CSS to change the size of the header font, align everything to the left and remove the spacing between rows in a table on a form. I would also like to change the row label and delete row button to be the same size/spacing as the rest of my table. I can get things to work on the header, but I can't seem to get the rest of the things to work. (I'm a newbie to CSS)
Here is the CSS I currently have and a screen shot of what my table currently looks like (Forms 11 using new forms designer).
.myTable th {
text-align: left;
line-height: 30px !important;
padding: 0px !important;
font-size: 12px !important;
font-weight: normal !important;
}
.myTable tbody td {
padding: 0px !important;
height: 30px !important;
line-height: 30px !important;
}
.myTable .cf-field {
padding: 0px !important;
}
.myTable tbody tr {
padding: 0px !importanat;
height: 30px !important;
line-height: 30px !important;
}
.myTable .cf-row-label {
font-size: 12px !important;
font-weight: normal !important;
}