Hi @flohaase!
The issue you’re experiencing with weForms where the background color of required fields inside a table not changing to red like the fields outside of a table could be due to CSS conflicts or limitations.
Here are a few troubleshooting suggestions:
- Inspect CSS: Use your browser’s developer tools (usually accessible by right-clicking on the page and selecting “Inspect” or “Inspect Element”) to inspect the CSS of both the required fields inside and outside the table. There might be some CSS rules that are specifically targeting only the fields outside the table.
- Add Custom CSS: You could add a custom CSS rule to target the required fields inside the table. For example:
table .required-field {
background-color: red !important;
}
You would replace “.required-field” with the actual class or ID of the required fields. The “!important” rule ensures that this style will override any other conflicting styles.
- Check for Plugin Conflicts: Deactivate other plugins to see if there is a conflict that is causing the issue. If the issue resolves, reactivate the plugins one by one to find the culprit.
- Update Plugin and Theme: Ensure you are using the latest versions of the weForms plugin and your theme. Sometimes, updating can resolve compatibility or styling issues.
Remember to backup your site before making any changes. If you need more assistance, feel free to ask!
Best, BoldGrid Support Team