diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-08-10 09:25:59 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-08-10 09:25:59 +0100 |
commit | 9f0a3731e9fe8204f091cb117ceb74569ea1b475 (patch) | |
tree | 884c4d25e170349428784ada45477909fb5c87f1 | |
parent | 828f7ed7f1c05924215e82d1338a60ffca8471ab (diff) |
Fix radio icons on questionnaire page (fixes #311/#314).
-rw-r--r-- | templates/web/fixmystreet/questionnaire/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/fixmystreet/questionnaire/index.html b/templates/web/fixmystreet/questionnaire/index.html index ddc1422b1..0c0e8af7f 100644 --- a/templates/web/fixmystreet/questionnaire/index.html +++ b/templates/web/fixmystreet/questionnaire/index.html @@ -96,9 +96,9 @@ your experience of getting the problem fixed?') %]</p> <p>[% loc('Would you like to receive another questionnaire in 4 weeks, reminding you to check the status?') %]</p> <p> <input type="radio" name="another" id="another_yes" value="Yes"[% ' checked' IF another == 'Yes' %]> - <label for="another_yes">[% loc('Yes') %]</label> + <label class="inline" for="another_yes">[% loc('Yes') %]</label> <input type="radio" name="another" id="another_no" value="No"[% ' checked' IF another == 'No' %]> - <label for="another_no">[% loc('No') %]</label> + <label class="inline" for="another_no">[% loc('No') %]</label> </p> </div> |