Skip to content
English
  • There are no suggestions because the search field is empty.

How to Change the Text Content of Recurring Options (Buttons)

Custom CSS to Adjust Wording

Change the Text Content of Recurring Options (Buttons)

.GF-RecurringOptions__button{
font-size:0pt;
}

.GF-RecurringOptions__button:nth-child(1):before{
font-size:12pt;
content:"custom text one";
}

.GF-RecurringOptions__button:nth-child(2):before{
font-size:12pt;
content:"custom text two";
}

Example