Space or break after the price?

I love Gravity :slight_smile: but I am struggling with the CSS.
How do I get the € sign before the price?
How do I get a a break between the price and amount field?
Not is is like: Price: 8,00 € Aantal:

(AND THAN IN THE NEXT LINE THE BOX FOR THE AMOUNT )
hope you can help

Hi Marisja. You do not need to do it with CSS. To move the Euro sign before the price, you can modify the EUR currency with the gform_currencies PHP filter. We show how in example 1 here:

For the other question, can you share a link to the page on your site where we can see the form. Thank you.

Hi Chris, thanks. It worked with the php change.

This is the URL to the form: (it’s in Dutch)
https://www.restaurantseray.nl/bestelformulier/
the label ;Aantal is placed directly after the price field.
I would like to place that on a new line (before the input field)

Would a layout such as this work?

To achieve that, you can add this CSS to your theme (or child theme) stylesheet or via the Appearance Customizer (Appearance > Customize > Additional CSS):

body #gform_wrapper_2 input.ginput_quantity {
	max-width: 25%!important;
	display: inline-block;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.