Hi,
I know this is complaining at a rather high level, but I do have a multigroup setup with 4 fields. I'd like to style the fields within the table that is used for editing because I neither like the single column view (with one row for each field) nor the multi column view (with all fields in one row).
There are id tags in the HTML output but unfortunately there is no really usable CSS class info available.
Would it be possible to automagically add usable CSS class names for every field? I.e. something like group_name.field_name?
Comments
Comment #1
markus_petrux commentedDepending on what you want to do, you may need to override theme_content_multigroup_node_form() in your theme.
The case you describe also affects any other element in the form. There are no clean CSS classes to match specific use cases. If you need them, you may want to parse the form using hook_form_alter() to suit your needs.