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

progress bar- stay in view

  • November 18, 2020
  • 1 reply
  • 46 views

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.

1 reply

Forum|alt.badge.img
  • January 21, 2021

Hi,
just add the code below to your custom css

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