Actually it wants to be, your closing asterisk and forward slash are the wrong way round
/*min-width: 210px*/
As for your second point, if you are asking how to kill the background from the list field that is due to the following styles found is styles.css
table td {
background: none repeat scroll 0 0 #EEE;
border-top: 1px solid white;
color: #333;
padding: 8px;
}
there is also an almost identical rule for 'table th', to kill the background you can add something like this
.gform_wrapper table td, .gform_wrapper table th {
background:none;
}
Posted 11 years ago on Friday December 7, 2012 |
Permalink