Visual Form Builder + Fee Recovery Translation: The Strings “Cover Donation Fees” and “Ensures 100% of your donation reaches our cause” should be translatable
Marco Principia
At the moment the only workaround (very bad for accessibility, but it works while we wait GiveWP to fix it...) is to use CSS to hide the item label and the <span> element of the item description, then and add to the item description a :before pseudo-element to mimic the label and an :after pseudo element to mimic the <span> element contained in it. Like this:
li#feeRecovery .givewp-elements-donationSummary__list__item__description span, li#feeRecovery .givewp-elements-donationSummary__list__item__label {
display: none;
}
li#feeRecovery .givewp-elements-donationSummary__list__item__description:before{
content:"YOUR BIG TEXT/LABEL HERE";
font-size: var(--givewp-font-size-headline-md);
color: var(--givewp-grey-900);
}
li#feeRecovery .givewp-elements-donationSummary__list__item__description:after{
content:"YOUR SMALL TEXT/DESCRIPTION HERE";
font-size: var(--givewp-font-size-headline-sm);
color: var(--givewp-grey-700);
}