Avatar on click in kanban

Hi,

Is it possible to remove the avatar all together?
Is it possible to remove the ‘on hover’ from the avatar?

Cheers,

Hi,

Is it possible to remove the avatar all together?

You can apply css that will hide all avatar elements

<style>
   .webix_kanban_user_avatar{
        display: none;
   }
</style>

Is it possible to remove the ‘on hover’ from the avatar?

It also can be done via css:

<style>
   .webix_kanban_user_avatar:hover{
        box-shadow: none;
   }
</style>