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;
}
Thank you Derek.