How to Make Tasklist Fixed at One Position

Issue: Tasklist was moving around the screen and difficult for users to find.

Instructions

Add the steps involved:

  1. In design kit, search for the below code:
    div.sttip.ir-todoList {
     display: inline-block;
     position: absolute;
  2. Change the value for position from absolute to fixed as shown below:
    div.sttip.ir-todoList {
     display: inline-block;
     position: fixed;