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. Balance will either be column 9 or 10 depending on whether the property name is shown in the table:
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. Balance will either be column 9 or 10 depending on whether the property name is shown in the table:
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. Balance will either be column 9 or 10 depending on whether the property name is shown in the table:
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;}