Custom CSS: Difference between revisions

Jump to navigation Jump to search
Andrian (talk | contribs)
No edit summary
Line 8: Line 8:
__TOC__
__TOC__


= Booking Page =
= 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 =
= 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 ==
== 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 ==
== 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 ==
== 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 ==
== 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==
==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;}


== MISCELLANEOUS ==
 
== 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;}
= Reports =
Custom CSS can be added in:
*SUB ACCOUNTS > ACCOUNT LIST to apply for all sub accounts
*SUB ACCOUNTS > ACCOUNT LIST > MANAGE ACCOUNT to apply for a specific sub account
=== Limit selector list for custom reports ===
Example: Limit the list to reports 1 - 3:
#reportid option:nth-child(n+4){display:none;}