progress bar- stay in view | XM Community
Question

progress bar- stay in view

  • 18 November 2020
  • 1 reply
  • 26 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

Badge

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