Category:Customise Control Panel: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
'''Examples''' | '''Examples''' | ||
1. The following Custom CSS can hide any column on the dashboard tables, change the child number in brackets to the desired column. | 1. The following Custom CSS can hide any column on the dashboard tables, change the child number in brackets to the desired column. | ||
.dashboardtable th:nth-child(9) {display:none;} | .dashboardtable th:nth-child(9) {display:none;} | ||
| Line 9: | Line 9: | ||
2. The following Custom CSS can hide any column on the rates table, change the child number in brackets to the desired column. | 2. The following Custom CSS can hide any column on the rates table, change the child number in brackets to the desired column. | ||
.ratetable th:nth-child(9) {display:none;} | .ratetable th:nth-child(9) {display:none;} | ||
| Line 15: | Line 15: | ||
3. The following Custom CSS can hide any column on the bookings table, change the child number in brackets to the desired column. | 3. The following Custom CSS can hide any column on the bookings table, change the child number in brackets to the desired column. | ||
.bookingtable th:nth-child(12) {display:none;} | .bookingtable th:nth-child(12) {display:none;} | ||