I have a grid question using a 11-point scale in the columns, and I'd like to have "Not at likely" to the left above 0 - 2 and to the far right above 8 - 10 Extremely likely.
I tried to modify the script above with:
<style>
#leftColumnLabel {
padding-left: 365px;
}
</style>
<script>
$(document).ready(function(){
var html = '<tr> <td id = "leftColumnLabel" colspan="3" >Not at all likely</td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> </tr>';
$('#[% QuestionName() %]_div .inner_table > tbody').prepend(html);
$('#[% QuestionName() %]_div .inner_table > tbody > tr:odd > td').removeClass('alt_color1').addClass('alt_color2');
$('#[% QuestionName() %]_div .inner_table > tbody > tr:even > td').removeClass('alt_color2').addClass('alt_color1');
})
</script>
but it is not looking good.