Help center
Go to home
Go to templates
Go to settings
Go to help center

Progress bar

Turn on the progress bar so respondents see how far through a multi-page form they are, and restyle it with custom CSS.

The progress bar tells a respondent how much of a form is left, one segment per page, and gives them a reason to carry on to the end. It is a switch in the form's settings, and it shows only on a form with two pages or more.

A published registration form with the progress bar across the top of the page, the first of its five segments filled in

Activate the progress bar

  1. Open the form's Settings tab

    From the form's tabs, pick Settings.
  2. Turn on Progress bar

    It is in the General section: "The progress bar provides a clear way for respondents to understand how much of the form they have completed, and encourages them to continue until the end."
  3. Save

    Press Save changes at the foot of the page.
The form's Settings tab, with the Progress bar switch turned on in the General section

Back in the editor, press Preview — or open the published form — to see it drawn across the top of the page.

The published onboarding survey, a three-segment progress bar above the form title and the first segment filled

Over a cover image the bar switches to white on a soft shade, so it stays legible whatever the photo.

The same survey under a cover image, where the progress bar turns white over a faint scrim so it stays legible

Using the progress bar with conditional logic

The bar counts every page the form has. When conditional logic jumps a respondent over pages, the bar leaps with it: 2 of 8, then 6 of 8, which can read as if something went wrong. The form cannot know which path a person will take, so it cannot show how much of that path is left.

Customize the progress bar

Automatic design

The bar takes its colours from what is behind it. On a plain page the track and the fill are shades of the form's own text colour, so a theme change recolours them too; over a cover they turn white on a faint scrim.

The same survey on a lavender theme, where the progress bar picks up the blue the form draws its text in

Custom CSS

Custom CSS can restyle the bar by hand. It carries two stable class names:

DescriptionCSS class
The band across the top of the page.fe-progress-bar
One segment, one per page.fe-progress-bar-item
The filled part of a segment.fe-progress-bar-item::after

This snippet paints the track light blue and the reached pages dark blue:

.fe-progress-bar-item {
  background-color: #cce4fe;
}

.fe-progress-bar-item::after {
  background-color: #0057ff;
}

Press Customize above the form title, scroll to the Custom CSS box at the bottom of the panel, paste the snippet and swap in your own hex codes.

The Customize panel scrolled to the Custom CSS box, holding the two rules that recolour the progress bar

Press Preview to check the result.

The form in Preview with the custom CSS applied: a light blue track and a dark blue filled segment