If your form title appears aligned to the left and you’d like it centered, there are two simple ways to fix it.
Option 1: Use the Design Tab
The easiest way is to use the center alignment option in the Design tab.
Open your form in the editor.
Go to the Design tab.
Find the Form Title Alignment setting.
Choose Center Alignment.
Your title will automatically move to the center of the form.
Option 2: Use Custom CSS
If you prefer more control or want to ensure consistent alignment across different layouts, add this custom CSS:
form > .MuiBox-root > .MuiBox-root > .MuiBox-root { align-items: center !important; }To apply it:
Go to your form’s Design tab.
Scroll down to the Custom CSS section.
Paste the code above and save your changes.
This will center the form title visually and keep it consistent on all devices.


