Forums

customize table

cheries 08 May, 2012
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?
Bullfn33 08 May, 2012
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.
cheries 10 May, 2012
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
Max_admin 11 May, 2012
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 ?
cheries 11 May, 2012
It's WORK!!!! Thanks too much!
This topic is locked and no more replies can be posted.