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

Question

Question

How to remove gray border around a table

asked on May 3, 2023

In a form, I would like to be able to completely remove the gray borders in the table since it will be auto-filled with info and wouldn't require any user input. I've already tried some CSS such as "#q56input {border-style: none !important;}" and was only able to remove the single line border within the table, not outside. I'm still pretty fresh to CSS so any info would be helpful. 

0 0

Answer

APPROVED ANSWER SELECTED ANSWER
replied on May 3, 2023

Give this a try:

Determine the q-id of the table itself, in this example, I'm using q1, and update this code in the three places it mentions q1 to be the q-id of your table.  

CSS:

#q1 Table tr, #q1 Table td, #q1 Table th {
  border: none!important;
}

 

0 0
replied on May 3, 2023

Thank you very much, worked like a charm.

1 0
replied on May 3, 2023

You're very 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.