Notice how the title I am using is Contract (instead of Contracts). This is because the extra letter s causes two lines. See image. How can I get the font to be smaller for that one SimpleCard?

       <?php
        \koolreport\amazing\SimpleCard::create(array(
            "title"=>"Contracts",
            "value"=>$this->dataStore("contract_dollars")->get(0,"contract_dollars_total"),
            "preset"=>"danger",
            "baseValue"=>5000,
            "format"=>array(
                "value"=>array(
                    "prefix"=>"$"
                )
            ),
            "cssClass"=>array(
                "positive"=>"text-danger",
            ),
        ));
        ?>

Also, if the user has the Bookmarks bar showing the Dashboard runs off the bottom of the window. How to deal with that?

Finally, I still haven' implemented the 'busy flag'. You mentioned a month or two ago that I could somehow use a subreport to accomplish it, but without any detail. Do you have an example?