โ Fix Date Column of Test Scores Widget
The /apply/tes page sometimes has a problem with the first column of the score widget being cut off:
A simple fix is to add this CSS to the source of the Test Scores page under Database > Application Editor.
<style type="text/css">
#test_widget_table>colgroup>col:nth-child(1) {
width: 100px !important;
}
</style>
No Comments