Is there any way to change the text size on the label that allows a collection to be repeated?
For clarity, here is a screenshot with the text I am trying to make larger circled in red:
Is there any way to change the text size on the label that allows a collection to be repeated?
For clarity, here is a screenshot with the text I am trying to make larger circled in red:
Hello,
There is a way to change the font size using CSS by right clicking the "Click Here to Add Another Account" element and selecting Inspect Element. Find the element's class name in the console window similar to the image below
The class name of mine is "cf-collection-append". After getting the class name, you can use it in the css code below
.cf-collection-append { font-size: 40px; }
and instead of "cf-colleciton-append", you would use your class name (don't forget to put the period in front).
The resulting Element should be the size you state after font-size. The code above generates this size