Can someone tell me how to customize the "Add" link to add a row in a table or collection? Either change the formatting of the text or even the word Add?
Question
Question
Answer
You can add CSS to the CSS/JavaScript portion of the form to control that more specifically. The links for tables and collections each have a different class, but you can target them with something like the following:
.cf-table-add-row, .cf-collection-append { font-size: 14px; font-weight: bold; }
It will require more if you only want to target a specific table/collection.
Replies
The formatting of the text is a separate matter, but changing the label can be done in the field configuration. Just click "edit" on the table in the form designer and scroll down to the Rows section.
Collections have a similar setting.
Ah, well that part is easy, now i have a request to make the add link bigger and bold. any help is appreciated.
You can add CSS to the CSS/JavaScript portion of the form to control that more specifically. The links for tables and collections each have a different class, but you can target them with something like the following:
.cf-table-add-row, .cf-collection-append { font-size: 14px; font-weight: bold; }
It will require more if you only want to target a specific table/collection.