You are viewing limited content. For full access, please sign in.

Question

Question

Change font size of repeating collection text - Forms 9.2.1

asked on August 5, 2015

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:

0 0

Answer

SELECTED ANSWER
replied on August 5, 2015

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

0 0

Replies

replied on August 5, 2015

You can use CSS like

.cf-collection-append {font-size: 20px;}

Note that web inspectors like the ones built into Firefox or Chrome can be used to find the class names of elements.

1 0
replied on August 5, 2015

That worked!

Thanks so much everyone!

Eric

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.