Custom CSS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 265: | Line 265: | ||
=== Hide a certain row in the "Info" tab on GUESTS=== | === Hide a certain row in the "Info" tab on GUESTS=== | ||
.pagetypeguests .viewguest .table tr:nth-child(x) {display: none; } | .pagetypeguests .viewguest .table tr:nth-child(x) {display: none; } | ||
== Bookings Menu == | == Bookings Menu == | ||
| Line 288: | Line 283: | ||
=== Hide cancelled bookings in the BOOKINGS Table === | === Hide cancelled bookings in the BOOKINGS Table === | ||
.bookingtable .cancelbooking {display:none;} | .bookingtable .cancelbooking {display:none;} | ||
== Rates Menu == | |||
=== Hide a certain colum in the RATES Table === | |||
.pagetyperates .bookingtable tr> *:nth-child(X) {display: none;} | |||
== Reports Menu == | |||
=== Limit selector list for custom reports === | |||
Example: Limit the list to reports 1 - 3: | |||
#reportid option:nth-child(n+4){display:none;} | |||
==Booking Popup== | ==Booking Popup== | ||
| Line 378: | Line 386: | ||
Email (under the Email tab) | Email (under the Email tab) | ||
.pagetypeajaxbookedit .menusetting-guestemail{display:none;} | .pagetypeajaxbookedit .menusetting-guestemail{display:none;} | ||