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

Question

Question

Forms - can form submitted to repository have darker text?

asked on August 28, 2024

Hello,

I had a question come in today from a customer regarding the text on a submitted form being darker. This primarily refers to a table on the form, and the text in the table cells is lighter than the table headers, and the user is having trouble reading it. Can anything be done in Forms to make the text appear darker when submitted to the repository?

0 0

Answer

SELECTED ANSWER
replied on August 28, 2024

You should be able to do that with CSS.  Here's one way you could do it (I'm sure there are many others): 

/*CSS like this should work in the Classic Designer*/
.cf-field .ro {
  font-weight: bold;
}

/*CSS like this should work in the Modern Designer*/
.cf-field .submission-view {
  font-weight: bold;
}

 

These target the read-only version of the fields used when viewed in the Monitor page (which I did test) and should also impact the version sent to the repository (which I didn't test, but it should work).

This was tested on Forms Version 11.0.2311.50556 (Forms 11 Update 5).

4 0
replied on August 28, 2024

That looks to have done it. Thanks!

1 0
replied on August 28, 2024

You're welcome.

0 0

Replies

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

Sign in to reply to this post.