Skip to main content

How to center the form title in Formaloo

Learn how to center your form title in Formaloo using either the Design tab’s built-in alignment option or a simple custom CSS snippet for full control and consistent layout.

Updated today

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.

  1. Open your form in the editor.

  2. Go to the Design tab.

  3. Find the Form Title Alignment setting.

  4. 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:

  1. Go to your form’s Design tab.

  2. Scroll down to the Custom CSS section.

  3. Paste the code above and save your changes.

This will center the form title visually and keep it consistent on all devices.

Did this answer your question?