Custom CSS: Difference between revisions

Jump to navigation Jump to search
No edit summary
Andrian (talk | contribs)
Line 298: Line 298:
  .bookgrid_rowroomname{display: none;}
  .bookgrid_rowroomname{display: none;}


=== Hide a certain column in the BOOKINGS Table ===
=== Hide a certain column in the BOOKING LIST Table ===
  .pagetypebookingslist .bookingtable tr > *:nth-child(X) {display: none;}
  .pagetypebookingslist .bookingtable tr > *:nth-child(X) {display: none;}
   
   
Line 305: Line 305:
  .pagetypebookingslist .bookingtable tr > *:nth-child(10) {display: none;} will hide the tenth column which is 'Email'.
  .pagetypebookingslist .bookingtable tr > *:nth-child(10) {display: none;} will hide the tenth column which is 'Email'.


=== Hide cancelled bookings in the BOOKINGS Table ===
=== Hide cancelled bookings in the BOOKING Table ===
  .bookingtable .cancelbooking {display:none;}
  .bookingtable .cancelbooking {display:none;}