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:
- In design kit, search for the below code:
div.sttip.ir-todoList {
display: inline-block;
position: absolute;
- Change the value for position from absolute to fixed as shown below:
div.sttip.ir-todoList {
display: inline-block;
position: fixed;