so i need to add some forms to my site, and when i add a table using “ninja forms” plugin and adding data to the table, the cells background is white, and as the default font color for “main content” i have it set to “white” so when i add data to the table it looks like this: https://drive.google.com/file/d/0B_gbUJhQ-RtebTc3NEcxb1ZfM00/view?usp=sharing
is there any way i can add a css class exception to the ninja form tables? i know the ninja form uses id’s to identify from different forms, i am contacting ninja forms team as well but they take a while to reply, any help is much appreciated
what is the looking of the table you want? white background with white font color ???
Well never the less there is a rule in enfold that every 2nd tr gets a different font color
.main_color table caption,
.main_color tr:nth-child(2n),
.main_color .pricing-table > li:nth-child(2n) {
color: #919191;
}
your can set your desired font-color by eg. :
.main_color tr:nth-child(2n) {
color: #000 !important;
}
Hey @wolfnuka!
Did you try @Guenni007 suggestion and did you have any luck with it?
Best regards,
Rikard
yes, i realized about the rule of every second tr tag, the code does work when applied on the “quick css” but it changes the font color of the “Secondary Font” so i modified the “2n” on
“.main_color tr:nth-child(2n) {
color: #000 !important;
}”
to “1n” , so now it changed the color of both the primary and secondary color font, which is ok with me, it looks more uniform on the table and the text is at least visible on the white background table, thx for the help!