Announcement

Collapse
No announcement yet.

Kanban View

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Kanban View

    Hello,

    I am quite new to EspoCRM, I want to be able to change the color of the Kanban boxes depending on the stage. How would I approach this?


  • #2
    Hi Joe,

    Administration > Entity Manager > Opportunity - Fields > Stage. Select style for specific stages.

    Comment


    • #3
      Thank you for the answer,

      Sorry, I meant the boxes underneath the stages, how could I change them so that, for instance, moving the box from Prospecting to Qualification changes the box from white to blue?

      Comment


      • #4
        Did you find a solution for this JoeRoot?

        Comment


        • #5
          You can add custom css https://github.com/espocrm/documenta.../custom-css.md


          Code:
          tr.kanban-row .group-column[data-name="Proposal"] .panel {
             background-color: #d4b1fb;
          }
          For each status.

          Clear cache after.

          Comment


          • MATO
            MATO commented
            Editing a comment
            Thank you works well

            Anyway to change the txt color without changing the complete site txt?

        • #6
          tr.kanban-row .group-column[data-name="Requested"] .panel {
          background-color: #cf605d2b;
          color: #fff !important;

          The "!important" is not seen within the page build

          Comment

          Working...
          X