Hi
I'm a newbie to LS so likely I'm doing something wrong.....
I have Array by column radio questions, on LS Version 3.15.9.. Fruity theme. The table transforms into one column on mobile devices / ipads. I do not want this to happen as the table is small enough ( it has only 3 columns), so it should fit on a mobile screen.
I searched a previous post about this:
www.limesurvey.org/de/foren/design-issue...k-on-smaller-screens
I also want to target a single question, so added the following JS to the question, but it does not work I still have the unwanted transformation on mobile devices:
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} .no-more-tables').removeClass('no-more-tables');
$('#question{QID} .answer-item .label-text').remove();
});
</script>
Any help with this would be appreciated !!