I feel like donkey. I created a data entry form, it builds a table of results. I can not customize rows and columns, I want 2 rows of alternating colors
Can you help a donkey?
Add this to your CSS of the form or page the form is on.
.your-table-class tr:nth-child(2n) {
background-color: #F5F5F5;
}
...change the color accordingly. You can always post a link to it for specific help.
Thanks for your help. I'm sorry, I didn't understand what is the class table.
I have the code in the img, and I don't know where customize it
Regards
Hi,
I think this should work for you:
.row_0{
background-color: #F5F5F5;
}
.row_1{
background-color: #FFFFFF;
}
Add it in a "Load CSS" action in your form.
Regards,
Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
It's WORK!!!! Thanks too much!