Custom CSS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 8: | Line 8: | ||
__TOC__ | __TOC__ | ||
= | = BOOKING PAGE = | ||
Custom CSS can be added in SETTINGS > BOOKING PAGE > DEVELOPERS > "Custom CSS" | Custom CSS can be added in SETTINGS > BOOKING PAGE > DEVELOPERS > "Custom CSS" | ||
| Line 225: | Line 225: | ||
#iconedit {display: none;} | #iconedit {display: none;} | ||
= | = CONTROL PANEL = | ||
Custom CSS can be added in: | Custom CSS can be added in: | ||
*SUB ACCOUNTS > ACCOUNT LIST to apply for all sub accounts | *SUB ACCOUNTS > ACCOUNT LIST to apply for all sub accounts | ||
*SUB ACCOUNTS > ACCOUNT LIST > MANAGE ACCOUNT to apply for a specific sub account | *SUB ACCOUNTS > ACCOUNT LIST > MANAGE ACCOUNT to apply for a specific sub account | ||
== | == Calendar == | ||
===Hide "Show" in the CALENDAR=== | ===Hide "Show" in the CALENDAR=== | ||
| Line 247: | Line 247: | ||
.inv0 .dashgrid_inventory {color: red} | .inv0 .dashgrid_inventory {color: red} | ||
== | == Dashboard == | ||
===Hide the Dashboard selector (drop-down menu) from DASHBOARD=== | ===Hide the Dashboard selector (drop-down menu) from DASHBOARD=== | ||
| Line 261: | Line 261: | ||
.mobiledashaddbooking{display:none;} | .mobiledashaddbooking{display:none;} | ||
== | == Guests Menu == | ||
=== 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; } | ||
== | == Rates Menu == | ||
=== Hide a certain colum in the RATES Table === | === Hide a certain colum in the RATES Table === | ||
| Line 289: | Line 289: | ||
.bookingtable .cancelbooking {display:none;} | .bookingtable .cancelbooking {display:none;} | ||
== | ==Booking Popup== | ||
===Hide 'Open in new Window' link=== | ===Hide 'Open in new Window' link=== | ||
| Line 379: | Line 379: | ||
.pagetypeajaxbookedit .menusetting-guestemail{display:none;} | .pagetypeajaxbookedit .menusetting-guestemail{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;} | |||
== Miscellaneous == | |||
===Change the blue Login button on the initial Beds24 page (resellers only)=== | ===Change the blue Login button on the initial Beds24 page (resellers only)=== | ||
| Line 392: | Line 402: | ||
=== Hide 'Template 2' from Guest Management > Booking Templates === | === Hide 'Template 2' from Guest Management > Booking Templates === | ||
.pagetypecommunicationbooktemplate #settingformid .background_boxprop:nth-of-type(2){display:none;} | .pagetypecommunicationbooktemplate #settingformid .background_boxprop:nth-of-type(2){display:none;} | ||