Hello,
Is there a way to change the color and or background of the Table Name (Field Label)?
Hello,
Is there a way to change the color and or background of the Table Name (Field Label)?
If you want to target a specific table, i.e. #q4, then you can use this CSS
#q4 .cf-section-header {color: white; background-color: red;}
In the field label you can change it to <font color="whatever color">Scope</font> to change the font color. The field background would need to be changed using CSS.
You can accomplish this by inserting custom CSS to format the field label.
The first line changes the text color and the second the background color
#q4 label {color: Lime;}
#q4 label {background-color: Blue;}
For some reason this doesn't seem to affect the table name field.
I am curious if there is a way to change the Font size of the table name/header. I have tried a few things in CSS but it never changes the table. You can change the labels and field name size but I have not found a way to change the size of the actual table.