changeing direction of form

Permalink
Im trying to change the direction of form text
to appear from left and not from the right and i cant find the way.
I tried several times with no luck, i'll appreciate it if someone can tell me how to do this.

Ive attached image screenshot to better explain what i want to do.

thanks

tommy

1 Attachment

 
Mnkras replied on at Permalink Reply
Mnkras
copy concrete/blocks/form/view.php to blocks/form/view.php,

look at the lines

<input name="qsID" type="hidden" value="<?= intval($survey->questionSetId)?>" />
<input name="pURI" type="hidden" value="<?= $pURI ?>" />


try switching them
so

<input name="pURI" type="hidden" value="<?= $pURI ?>" />
<input name="qsID" type="hidden" value="<?= intval($survey->questionSetId)?>" />