Question

how i can change the next tag in show.html.twig

{{ form_row(form.quantity, {'attr': {'class': 'center-text'}, 'empty_value': '1'}) }}

I need change the style, how I do it?

thanks

Était-ce utile?

La solution

Try add style property to the attr with any CSS styles

{{ form_row(form.quantity, {'attr': {'class': 'center-text', style: "color: red;"}, 'empty_value': '1'}) }}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top