Survey Form feedback and help

https://codepen.io/zer0fr0st93/full/LrxyYw/
So I completed the project as the user stories wanted! My only problem now is how to put the bubbles before the options ? Any other recommendations are appreciated.

Nice survey.

Radio buttons before labels is easy fix. Just move label text to after input element

<li class="radio">
<label>
<input name="radio-buttons" value="1"  type="radio" class="timesPerWeek" >
Daily</label>  <!-- move to after input -->
</li>

You might want to look at this text wrapping like where “within a week” is isolated from the rest of the label.
Screenshot%20from%202018-06-10%2014-23-44
It may have something to do with the list element. The other question styled with a list element is the same also.

Thanks but how I am supposed to put isolated text to the whole question ?

It’s ok I found what was the fault by the way thanks for the feedback :smile:

1 Like