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

Question

Question

Hiding table names

asked on June 19, 2017

I have two chart in a row on my form.  I would like to make the heading on the second chart disappear. 

Here is a snip from my form...

I would like the highlighted title invisible.

I have the CSS code .rejected_items_table .cf-section-header {display : none;}, but it is not working.

Any ideas?

0 0

Replies

replied on June 19, 2017

You could use !important to override existing rule:

.myTable .cf-section-header {display : none !important; }

 

0 0
replied on June 20, 2017

For some reason, it worked when I changed the order of the code. Not sure why...

0 0
replied on June 19, 2017

You may need to add the class rejected_items_table to the advanced settings of your table.  

 

If it is only one table you are specifically wanting to hide the label for, you may want to identify the specific field number, such as:

 

#q33 .cf-section-header {display: none;}

 

In your case, replace the 33 with the number of your field.  You can find this on the CSS and JavaScript Page.

 

0 1
replied on June 19, 2017

That's what I thought.  I tried both of these solutions and it is still there.  I will need to all previous coding.  There must be a conflicting code somewhere.

Thanks.

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

Sign in to reply to this post.