Sage CRM 2021 R1 Interactive Dashboard - Summary List Gadget with Icon View

SUGGESTED

Hi.

Has anyone found a way to view the Summary List Gadget with Icons in a horizontal view as opposed to a single column view?

Example:

Currently we see the icon boxes in a single column

However, we would like to see it like this instead:

Let me know if we can edit the css theme or something else where we can see all the icons in an horizontal format.

Thanks,

Stephane

  • 0
    SUGGESTED

    Hello.

    We were able to change the theme within this location: crm/Themes/InteractiveDashboard/Themes/ergonomic/theme.css - line 410

    Remove or rem out the existing display and enter the following:

    .MenuListGadgetFlowPanel {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;

    }

    Now the icons are appearing correctly in an horizontal format.

    Stephane