progress bar- stay in view | XM Community
Skip to main content

Anyone have code that will locate the progress bar at a fixed point on the screen so it doesn't scroll out of view on a page with serial questions? Thanks.

Hi,
just add the code below to your custom css

.Skin #ProgressBar {
   font-size: 16px;
   position: sticky;
   z-index: 100;
   top: 0px;
}


Leave a Reply