Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8117575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T04:13:09+00:00 2026-06-06T04:13:09+00:00

I want to add a class to certain input or label elements in a

  • 0

I want to add a class to certain input or label elements in a Symfony application.

I can do something like this in a form on the Twig level:

<div class="row">
    {{ form_label(form.subject) }}
    {{ form_widget(form.subject, { 'attr': {'class': 'c4'} }) }}
</div>

This works fine. But I have to setup and write out the whole template for every form manually. And I actually want to use:

{{ form_widget(form) }}

So, I was thinking, how could I add a CSS class for a label or an input somewhere in the FormType:

class SystemNotificationType extends AbstractType {
    public function buildForm(FormBuilder $builder, array $options) {
        $builder->add('subject', 'text', array(
            'label' => 'Subject'
        ));

I think this might be more useful, as you can configure the whole form in one place.

How can this be done? Maybe I’m thinking about it the wrong way.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T04:13:10+00:00Added an answer on June 6, 2026 at 4:13 am

    The class of a field is part of the presentation layer of your application, so it is best to create a twig theme for your forms:

    Create a file fields.html.twig in Resources/views/Form of your Bundle and define how your form row will be formated, for example:

    {% block field_row %}
    <div class="row">
        {{ form_errors(form) }}
        {{ form_label(form) }}
        {{ form_widget(form, { 'attr': {'class': 'c4'} }) }}
    </div>
    {% endblock field_row %}
    

    If you want to customize only certain field, for example the field fieldName of the form formName, customize the row:

    {% block _formName_fieldName_row %}
    <div class="row">
        {{ form_label(form) }}
        {{ form_errors(form) }}
        {{ form_widget(form, { 'attr': {'class': 'c4'} }) }}
    </div>
    {% endblock %}
    

    EDIT: customize only the field:

    {% block _formName_fieldName_widget %}
        {% set type = type|default('text') %}
        <input type="{{ type }}" {{ block('widget_attributes') }} value="{{ value }}" class="c4" />
    {% endblock %}
    

    Then in all the form templates you want it use this theme add:

    {% form_theme form 'MyBundle:Form:fields.html.twig' %}
    

    This is explained in depth in the cookbook

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add a class to multiple span elements with common classname's based
I want to add some behavior to a certain class at runtime. I know
Suppose I have a class MyClass to which I want to add certain 'observer'
I want to add class atttributes to a superclass dynamically. Furthermore, I want to
I have 2 list and i want to add a class =last to the
I am working on a Jquery accordion stuff. I want to add a class
I want to add a subview to the UITableCellView class. However, non of the
I have a class which I want to add a property with using formula
I want to add a new feature in a wxPython class. I also want
So I want to be able to add/remove class methods at runtime. Before you

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.