Hey,
I had a look and as far as I can tell they’ve used a bootstrap style progress bar but haven’t setup the CSS in the standard way – resulting in this progress bar not showing.
It’s a paid theme, I would be getting right onto them about it.
If I’m right, it’s pretty poor quality work to do this. It will break other progress bars because people assume the standard structure. e.g. https://www.w3schools.com/bootstrap/bootstrap_progressbars.asp
That being said … you should be able to work around it by adding this css to your theme (e.g. the style.css file in your active theme)
body div.gform_body div.progress {
float: none;
width: initial;
height: initial;
}
The code above worked well. Thank you!
I also extended the CSS to add my own styling:
body div.gform_body div.progress {
float: none;
width: initial;
height: initial;
}
.progress {
text-align: center;
background-color: transparent;
box-shadow: none;
}
.progress-bar {
overflow: hidden;
background-color: #42bdcb;
border-radius: 5px;
background-clip: padding-box;
box-shadow: none;
}
Great work and thanks for sharing. Someone else might want to use it.