Hi,
I need help customizing the csv tables. There was a couple of issues I had, maybe you have the solution for it.
1. Special characters in uploaded csv table show as ?
Is there a way to automatically convert these into a format that is understood by the browser without having to edit it manually on the csv tables before uploading?
2. I need to have the first x amount of rows of the tables as headings, and these headings need to be excluded from the hover row/cell state. (see example table on website:
example).
At the moment my css is as follows, but the hover seems to override the first 3 rows...:
Code: |
TABLE.table-sport-odds {
font-size: 1em;
background-color: #f2efef;
color: #000;
}
TABLE.table-sport-odds .actRow_0 {
font-size: 1em !important;
font-weight: bold !important;
background-color: #D32626 !important;
color: #fff !important;
}
TABLE.table-sport-odds .actRow_1 {
font-size: 0.813em !important;
font-weight: bold !important;
background-color: #EF4343 !important;
color: #fff !important;
}
TABLE.table-sport-odds .actRow_2 {
font-size: 0.813em !important;
font-weight: bold !important;
background-color: #EF4343 !important;
color: #fff !important;
}
TABLE.table-sport-odds td, th {
text-align: center;
border: 1px solid #fff;
padding:.2em 5px;
font-size: 0.813em;
}
/* Table 0 Column Red */
TABLE.table-sport-odds .actCell_0 { font-size: 0.813em; background-color: #EF4343; color: #fff; }
/* Hover Row */
TABLE.table-sport-odds tr:hover td {
background-color: #c4b6b6;
}
|
Hope you can help,
Thanks,
Nadia