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

Question

Question

Adding header to Custom HTML field in a table

asked on September 5

Is there a way to add a header to Custom HTML fields inside a table? Ex. How the single line field here has header "Name"

 

0 0

Answer

SELECTED ANSWER
replied on September 6

You can adjust the number for the correct column and content for what you want header to be:

.table-header-cell:nth-child(5)::before {
  content: "Name";
  color: black;
  font-weight: bold;
}

 

2 0
replied on September 7

Thank you!

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.