Is there a way to make the row label size smaller? As you can see in the photo, it's a bit long and spaced out. It makes the table look bad.
Question
Question
Replies
Hi Thomas,
You can target the field ID and apply CSS styling.
#q1 label {font-size: 15px;}
Replace "q1" with your ID.
Thank you Mahesh. But I feel like I'm missing something. The Row Label on the left doesn't have an ID. Unless I just don't see it. Each box in the row does, but the label to the far left, "The cost to purchase.." does not have an ID.
It might be that due to the width of the label, its not properly displayed.
What you can do is preview the form and click on F12 to open developper tool and select the element. It will give you the ID or simply rename the label momentarily to see the ID :-)
I may be losing my mind haha. I changed the name and still don't see an ID.
Sorry my mistake.
I misunderstood your question.
Try this code. It should fix your problem.
.col0 {font-size: 8px;}
You can also reduce the space to make it more neat.
.col0 {font-size: 10px;}
.col0 {
line-height: 1em!important;
font-weight: regular;}
Thank you for all of your help. That worked out great!
Glad it helped!
Hi @████████,
Please mark my reply as "Mark as an answer" if that help you.
Thanks.