When I preview my ranking question, the columns are switched--Ranking on left, choices on the right. See included screenshot. This wouldn't matter except that instructions (help/tip) are part of the question. It would be a hack to just hide the tip.
Any thoughts on this would be greatly appreciated.
I know you use Firefox 50 (or more) : you made a good choice
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Thanks Denis. I made the recommended changes but it had no effect. I really don't know enough about CSS to know if I've actually made a change.
Here's the recommended code:
.dragDropTable .columns2{width:50%;float:left;margin:0;padding:0;
*width:49%;/* IE7 round up, all other round down */
}
-:dir(ltr) .dragDropTable .columns2{float:right}
+:dir(rtl) .dragDropTable .columns2{float:right}
.dragDropTable .clear{clear:both}
Here's my code:
.dragDropTable .columns2{width:50%;float:left;margin:0;padding:0;
*width:49%;/* IE7 round up, all other round down */
}
-:dir(ltr) .dragDropTable .columns2{float:right}
+:dir(rtl) .dragDropTable .columns2{float:right}
.dragDropTable .clear{clear:both}
DenisChenu wrote: You can set it in template.css too (force)
Code:
:dir(ltr) .dragDropTable .columns2{float:left}
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.