I have created a form that includes the product price and qualtity - using version 1.5.2.8. When I preview the form, the layout is as expected with Price [price] Quantity [quantity] all on one line. <span class='ginput_product_price_label'>Price:</span> <span class='ginput_product_price' id='input_2_12'>£ 250.00</span> <input type='hidden' name='input_12.2' id='ginput_base_price_2_12' class='gform_hidden' value='£ 250.00'/> <span class='ginput_quantity_label'>Quantity:</span> <input type='text' name='input_12.3' value='' id='ginput_quantity_2_12' class='ginput_quantity' size='10' tabindex='8'/>
However, when the form is inserted in the post, there is a before Quantity and also before [quantity]
<span class='ginput_product_price_label'>Price:</span> <span class='ginput_product_price' id='input_2_12'>£ 250.00</span><input type='hidden' name='input_12.2' id='ginput_base_price_2_12' class='gform_hidden' value='£ 250.00'/> break<span class='ginput_quantity_label'>Quantity:</span> break
<input type='text' name='input_12.3' value='' id='ginput_quantity_2_12' class='ginput_quantity' size='10' tabindex='8'/>
I want everything to be displayed on one line. How do I achieve this?