Ability to Modify Wording on Giving Hub
We have just started using the Grant Catalog to promote challenges for some of our funds. Could we have the ability to customize the "Requested" wording on the bottom of the square that is listed in the portal or on the giving hub to something we choose? We'd love to be able to rename it to "Goal" as that better suits what we use the Grant Catalog for.
-
Jared Mabrey
commented
Here's some hacky CSS that might help for now, Anna.
/*--- Adjust size of Grant Catalog requested / funded ---*/
.row.mb-4 .col-6, .row.mb-4 .col {
font-size: 20px; /* Whole block */
font-weight: 100;
line-height: 23px;
margin-top: 15px;
b { /* make Requested / Funded words smaller*/
font-size: 14px;
font-weight: 600;}
b:nth-child(2) { /* Hide Requested */
visibility:hidden;}
b:nth-child(2):after { /* Add Goal after where Requested was */
content: 'Goal';
visibility: visible;}
}