Breadcrumbs Widget - How to make the widget sticky to the bottom?

  • golanitay1984
    Asked on August 9, 2018 at 7:32 AM
    Is there a way to make it sticky to the bottom of the page?
  • Adrian
    Replied on August 9, 2018 at 7:45 AM

    If you want to position the Breadcrumbs Widget like in the image below, inject the CSS code below to your form.

    Breadcrumbs Widget   How to make the widget sticky to the bottom? Image 10

    .form-all {
      padding-bottom: 120px;
      position: relative;
    }

    .se-main-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }

    DEMO: https://form.jotform.com/82203040148948

  • golanitay1984
    Replied on August 9, 2018 at 7:53 AM

    Thanks!