I’m looking to hide the progress bar’s Steps x of x and the percentage (x%) in the progress bar. Is this possible?
To hide steps text add CSS below
.gform_wrapper.gravity-theme .gf_progressbar_title {
display: none;
}
To hide % add CSS below
.gform_wrapper.gravity-theme .gf_progressbar_percentage span {
display: none;
}
1 Like
Thank you Derek.
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.