diff options
-rw-r--r-- | templates/web/default/report/new/fill_in_details.html | 2 | ||||
-rw-r--r-- | web/js/fixmystreet.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/web/default/report/new/fill_in_details.html b/templates/web/default/report/new/fill_in_details.html index 0f26bbdc1..df43fc254 100644 --- a/templates/web/default/report/new/fill_in_details.html +++ b/templates/web/default/report/new/fill_in_details.html @@ -105,7 +105,7 @@ [%- IF category_extras %] <div id="category_meta"> [%- IF report_meta %] - <p>Additional Information</p> + <h4>Additional Information</h4> [%- FOR meta IN report_meta %] [%- meta_name = meta.name -%] diff --git a/web/js/fixmystreet.js b/web/js/fixmystreet.js index ad3ff7c4d..4bedaa7cb 100644 --- a/web/js/fixmystreet.js +++ b/web/js/fixmystreet.js @@ -62,7 +62,7 @@ $(function(){ $('#category_meta').empty(); if ( category_extras[this.options[ this.selectedIndex ].text] ) { fields = category_extras[this.options[ this.selectedIndex ].text]; - $('<p>Additional information</p>').appendTo('#category_meta'); + $('<h4>Additional information</h4>').appendTo('#category_meta'); fields.sort( function(a,b) { return a.order - b.order } ); for ( i in fields) { meta = fields[i]; @@ -70,7 +70,7 @@ $(function(){ field += '<label for="form_' + meta.code + '">' + meta.description + ':</label>'; field += '<input type="text" value="" name="' + meta.code + '" id="form_' + meta.code + '">'; field += '</div>'; - $('<p>' + field + '</p>').appendTo('#category_meta'); + $( field ).appendTo('#category_meta'); } } } |