Difference between revisions of "Custom CSS"

From Beds24 Wiki
Jump to navigation Jump to search
 
(20 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
<div class="heading">Custom CSS</div>
 
<div class="heading">Custom CSS</div>
 
  This page gives custom CSS examples which can be used to customize the booking page or the control panel.
 
  This page gives custom CSS examples which can be used to customize the booking page or the control panel.
 +
  
 
__TOC__
 
__TOC__
Line 27: Line 28:
 
.roomoffercalendarmonth .dateavail {pointer-events: none;}</code>
 
.roomoffercalendarmonth .dateavail {pointer-events: none;}</code>
  
=== Mark days when check-out is not allowed (i.e. for rentals on a weekly basis)===
+
=== Mark days when check-in and/or check-out is not allowed (i.e. for rentals on a weekly basis)===
 
To use this option you will need to set your check-in/check-out rules in the CALENDAR. It will not work for check-in and check-out restrictions only set in rates.  
 
To use this option you will need to set your check-in/check-out rules in the CALENDAR. It will not work for check-in and check-out restrictions only set in rates.  
  
 
NOTE: Limit the check-out in the CALENDAR (click on "Override") to use this function.
 
NOTE: Limit the check-out in the CALENDAR (click on "Override") to use this function.
 +
 +
To highlight when Check-out is not allowed :-
  
 
<code> .datenco{background-color:#f4f4f4; color:#cccccc;}</code>
 
<code> .datenco{background-color:#f4f4f4; color:#cccccc;}</code>
  
=== Mark dates when check-in is not allowed (i.e. for rentals on a weekly basis)===
+
To highlight when Check-in is not allowed :-
To use this option you will need to set your check-in/check-out rules in the CALENDAR. It will not work for check-in and check-out restrictions only set in rates.
+
 
 +
<code> .datenci{background-color:#f4f4f4; color:#cccccc;}</code>
  
NOTE: Limit the check-in in the CALENDAR (click on "Override") to use this function.
+
To highlight specific days then set the day with the appropriate colour :-  
  
<code> .datenci{background-color:#f4f4f4; color:#cccccc;}</code>
+
<code> .daymon{background-color:#592323; color:#cccccc;}</code>
 +
<code> .daytue{background-color:#592323; color:#cccccc;}</code>
 +
<code> .daywed{background-color:#592323; color:#cccccc;}</code>
 +
<code> .daythu{background-color:#592323; color:#cccccc;}</code>
 +
<code> .dayfri{background-color:#592323; color:#cccccc;}</code>
 +
<code> .daysat{background-color:#592323; color:#cccccc;}</code>
 +
<code> .daysun{background-color:#592323; color:#cccccc;}</code>
  
 
=== Background Image  ===
 
=== Background Image  ===
Line 285: Line 295:
 
}
 
}
 
</code>
 
</code>
 +
 +
=== Hide Property Name ===
 +
This will remove the individual property names from the Multi Property booking page.
 +
 +
<code>.at_propnametext {display: none;}</code>
  
 
= BOOKING WIDGETS =
 
= BOOKING WIDGETS =
Line 323: Line 338:
 
<code>#iconedit {display: none;}</code>
 
<code>#iconedit {display: none;}</code>
  
 +
=== Align all table content right ===
 +
<code>.conf_subheadercenter, .conf_numbercenter{text-align: right !important;}</code>
  
 
= CONTROL PANEL =
 
= CONTROL PANEL =
Line 353: Line 370:
 
===Hide "Help" icon in left column===
 
===Hide "Help" icon in left column===
 
<code>.sticky-left .row-help-button  {display: none;}</code>
 
<code>.sticky-left .row-help-button  {display: none;}</code>
 +
===Hide Drag&Drop option===
 +
<code>#dragDropButton  {display: none;}</code>
 
===Hide "Notes" icon in left column===
 
===Hide "Notes" icon in left column===
 
<code>.sticky-left .fa-comment-alt-plus, .sticky-left .fa-comment-alt-lines {display: none;}</code>
 
<code>.sticky-left .fa-comment-alt-plus, .sticky-left .fa-comment-alt-lines {display: none;}</code>
 +
===Hide "Intelligence" icon===
 +
<code>.sticky-left .row-intelligence-button{display: none;}</code>
 +
===Hide Group booking icons===
 +
<code>.fa-circle{display: none;}</code>
 
===Display occupancy as color instead of number===
 
===Display occupancy as color instead of number===
 
<code>.calendar2 .property-stats-wrapper
 
<code>.calendar2 .property-stats-wrapper
Line 396: Line 419:
 
pointer-events: none;
 
pointer-events: none;
 
}</code>
 
}</code>
 +
 +
===Change background and font color for "Unallocated" bookings===
 +
<code>..pagetypecalendar2 .overflow-unit{ background-color: #FEE0DD; color: #9E4843;}</code>
  
 
===Hide the option to create or change views===
 
===Hide the option to create or change views===
Line 468: Line 494:
  
 
<code>.dashboardtable th:nth-child(9) {display:none;}</code>
 
<code>.dashboardtable th:nth-child(9) {display:none;}</code>
 +
 +
===Hide  Edit button in the Notes component===
 +
Change the child number in brackets to the desired column.
 +
 +
<code>#dashboardnotea  .btn {display:none;}</code>
  
 
==Align the content of a column right==
 
==Align the content of a column right==
Line 483: Line 514:
 
=== Hide room name in the BOOKING GRID ===
 
=== Hide room name in the BOOKING GRID ===
 
<code>.bookgrid_rowroomname{display: none;}</code>
 
<code>.bookgrid_rowroomname{display: none;}</code>
 +
 +
=== Hide room name in the BOOKING GRID ===
 +
<code>. pagetypebookingsgrid .todaydate{font-weight:bold;}</code>
  
 
=== Hide a certain column in the BOOKING LIST Table ===
 
=== Hide a certain column in the BOOKING LIST Table ===
Line 489: Line 523:
 
Examples:
 
Examples:
  
<code>.pagetypebookingslist .bookingtable tr > *:nth-child(1) {display: none;}</code> will hide the first column which is 'Number'.
+
<code>.pagetypebookingslist .bookingtable tr > *:nth-child(2) {display: none;}</code> will hide the first column which is 'Number'.
  
<code>.pagetypebookingslist .bookingtable tr > *:nth-child(10) {display: none;}</code>  will hide the tenth column which is 'Email'.
+
<code>.pagetypebookingslist .bookingtable tr > *:nth-child(11) {display: none;}</code>  will hide the tenth column which is 'Email'.
  
 
===Hide  column on the BOOKINGS table===
 
===Hide  column on the BOOKINGS table===
Line 497: Line 531:
  
 
<code> .bookingtable  th:nth-child(12) {display:none;} </code>
 
<code> .bookingtable  th:nth-child(12) {display:none;} </code>
 +
 +
===Hide  cancelled bookings BOOKINGS list===
 +
<code>.pagetypebookingslist  .cancelbooking{display:none;} </code>
  
 
=== Hide cancelled bookings in the BOOKINGS Table ===
 
=== Hide cancelled bookings in the BOOKINGS Table ===
Line 507: Line 544:
 
<code> .pagetypebookingsgrid table {pointer-events: none;}</code>
 
<code> .pagetypebookingsgrid table {pointer-events: none;}</code>
  
== Rates Menu ==
+
== Fixed Prices Menu ==
===Hide column on the rates table===
+
===Hide column on the Fixed Prices table===
 
Change the child number in brackets to the desired column.  
 
Change the child number in brackets to the desired column.  
  
Line 530: Line 567:
 
=== Hide the "Delete" button for properties ===
 
=== Hide the "Delete" button for properties ===
 
<code>.pagetypeproperties .b24btn_delete{display:none;}</code>
 
<code>.pagetypeproperties .b24btn_delete{display:none;}</code>
 +
 +
=== Hide the "Delete" button for rooms ===
 +
<code>.pagetyperooms .b24btn_delete{display:none;}</code>
  
 
==Booking Popup==
 
==Booking Popup==
Line 730: Line 770:
 
<code>.pagetypelogin .b24btn_Login{background-color:#xxxxxx;}</code>
 
<code>.pagetypelogin .b24btn_Login{background-color:#xxxxxx;}</code>
  
=== Hide the "Make a Charge using Stripe" button ===
+
=== Hide the "Stripe" button ===
 
<code>#makechargeusing{display:none;}</code>
 
<code>#makechargeusing{display:none;}</code>
 +
 +
=== Hide the Stripe "Refund" button ===
 +
<code>#b24btn_Refund{display:none;}</code>
 +
 +
If your are using the control panel in another language than English you might need to replace the word Refund with what you see on the button.
  
 
=== Hide potential issue "Less than 12 months available"===
 
=== Hide potential issue "Less than 12 months available"===

Latest revision as of 11:40, 13 February 2024

Custom CSS
This page gives custom CSS examples which can be used to customize the booking page or the control panel.


Contents

1 PROPERTY BOOKING PAGE

Custom CSS can be added in (SETTINGS) BOOKING ENGINE > PROPERTY BOOKING PAGE DEVELOPERS > "Custom CSS"

1.1 Bigger room name

.at_roomnametext{font-size: 14px;} /*if you want the text even bigger use a higher number*/

1.2 Disable clicks on calendar selector

1.2.1 Disable month back-and-forth toggle

.monthcalendarhead{pointer-events: none;}

1.2.2 Disable clicks on dates

.roomoffercalendarmonth{pointer-events: none;}

1.2.3 Disable clicks only on dates not in pointer selection

.roomoffercalendarmonth .daterequest, .roomoffercalendarmonth .dateavail {pointer-events: none;}

1.3 Mark days when check-in and/or check-out is not allowed (i.e. for rentals on a weekly basis)

To use this option you will need to set your check-in/check-out rules in the CALENDAR. It will not work for check-in and check-out restrictions only set in rates.

NOTE: Limit the check-out in the CALENDAR (click on "Override") to use this function.

To highlight when Check-out is not allowed :-

.datenco{background-color:#f4f4f4; color:#cccccc;}

To highlight when Check-in is not allowed :-

.datenci{background-color:#f4f4f4; color:#cccccc;}

To highlight specific days then set the day with the appropriate colour :-

.daymon{background-color:#592323; color:#cccccc;} .daytue{background-color:#592323; color:#cccccc;} .daywed{background-color:#592323; color:#cccccc;} .daythu{background-color:#592323; color:#cccccc;} .dayfri{background-color:#592323; color:#cccccc;} .daysat{background-color:#592323; color:#cccccc;} .daysun{background-color:#592323; color:#cccccc;}

1.4 Background Image

To use a background image upload it to (SETTINGS) > BOOKING ENGINE > PICTURES.

Replace 'https://beds24.com/pic/p0000/2049/04.jpg' with the url of your uploaded picture.

body{background-image:url(https://beds24.com/pic/p0000/2049/04.jpg);}

1.5 Shadow around your Booking Page (Adaptive Booking Page only)

.bookingpage { webkit-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38); -moz-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38); box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 2px rgba(0, 10, 10, 0.38); margin-bottom: 20px;}

1.6 Booking Page with rounded corners (Adaptive Booking Page only)

{border-radius:7px; -webkit-border-radius:7px; -moz-border-radius:7px;}

1.7 Hide cents

.bookingpagecents {display:none;}

1.8 Show prices with cents even if cents are zero

.bookingpagecentshide {display:inline;}

1.9 Mark certain fields in the calendar selector

You can highlight both the headings of the calendar (i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun) and all the dates that fall on a given day of the week (i.e. all 4 or 5 dates that fall on a Saturday).

Headings = '.dayMon' (or dayTue, dayWed, dayThu, dayFri, daySat, daySun)

Dates = '.daymon' (or daytue, dayewed, daythu, dayfri, daysat, daysun)


Example 1: Set the font color for the weekday heading of Monday ('Mon')

.dayMon{color:#c44a2f !important;}


Example 2: Set the background color for the weekday heading of Monday ('Mon')

.dayMon{background-color:#c44a2f !important;}


Example 3: Set the font color for all the dates that fall on a Saturday

.daysat{color:#c44a2f !important;}


Example 4: Add a border around all the dates that fall on a Sunday

.daysun{border:1px solid #999999 !important;}

1.10 Add a border around the selected dates

.datestay{border: 1px solid #2f2f2f !important;}

If you use split dates the CSS is: .prevdatestay, .datestay{border: 1px solid #2f2f2f !important;}

1.11 Line through unavailable dates

.datenotavail{text-decoration: line-through;}

1.12 Mark past dates with a different background and text colour

.datepast{background-color: #xxxxxx; color: #xxxxxx;}

1.13 Change width of hover image (Adaptive Booking Page only)

.ui-tooltip{max-width: 500px;}

1.14 Remove the hover effect on pictures (Adaptive Booking Page only)

img{pointer-events: none;}

1.15 Add a label above the room selector for multiple room bookings (Responsive Booking Page only)

.roomofferqtyselectlabel{display: block;}

1.16 Hide up button (Responsive Booking Page only)

footer .button{display: none;}

1.17 Add icons to descriptive texts (Responsive Booking Page only)

Bootstrap glyphicons and Font Awesome icons can be added to the descriptive fields. To add icons the editor needs to be set to "Source"

Examples:

<span class="glyphicon glyphicon-user" aria-hidden="true"></span>

will add a Bootstap icon for a person.

<i class="fa fa-bicycle" aria-hidden="true"></i>

will add a Font Awesomeicon for a bicycle.

Icons might disappear when the editor is opened again. In this case you will need to enter it again.

If you don not show the "Features" module on the booking page you will need to add

<link rel="stylesheet" href="include/font-awesome/fontawesome-pro-5.14.0-web/css/all.min.css">

in the "Head" section in (SETTINGS) BOOKING ENGINE > PROPERTY BOOKING PAGE > DEVELOPER / (SETTINGS) BOOKING ENGINE > MULTIBOOKING PAGE > DEVELOPER.

1.18 Hide icons (Responsive Booking Page only)

.b24fa{display:none;}

#b24scroller .input-group-addon{display:none;}

1.19 Change text color of language selector and currency selector (Responsive Booking Page only)

.b24languagedropdown .btn, .b24languagedropdown .btn.active, .b24languagedropdown .btn:active, .b24currencydropdown .btn, .b24currencydropdown .btn.active, .b24currencydropdown.btn:active {color:#fff;}

1.20 Make language selector and currency selector a button (Responsive Booking Page only)

.b24languagedropdown .btn, .b24languagedropdown .btn.active, .b24languagedropdown .btn:active, .b24currencydropdown .btn, .b24currencydropdown .btn.active, .b24currencydropdown.btn:active {background:white; padding:10px;}

1.21 Hide currencies from the currency selector (Responsive Booking Page only)

The currency class format is: .cur-XXX.

cur is the name of the class and XXX represents a country code: CAD = Canadian Dollars, GBP = British Pounds and so on. The country codes are:

AUD, BHD, CAD, CLP, CRC, EUR, FJD, GBP, GEL, ILS, ISK, NZD, USD, BGN, BRL, CHF, CNY, CZK, DKK, HKD, HRK, HUF, HUF, IDR, INR, JPY, KRW, LBP, LKR, MAD, MMK, MXN, MYR, NOK, PHP, PLN, RON, RUB, SEK, SGD, THB, TRY, ZAR

This code will remove all currencies except for Euros, Swiss Francs and US Dollars: .cur-AUD,.cur-BHD,.cur-CAD,.cur-CLP,.cur-CRC,.cur-FJD,.cur-GBP,.cur-GEL,.cur-ILS,.cur-ISK,.cur-NZD,.cur-BGN,.cur-BRL,.cur-CNY,.cur-CZK,.cur-DKK,.cur-HKD,.cur-HRK,.cur-HUF,.cur-HUF,.cur-IDR,.cur-INR,.cur-JPY,.cur-KRW,.cur-LBP,.cur-MAD,.cur-MMK,.cur-MXN,.cur-MYR,.cur-NOK,.cur-PHP,.cur-PLN,.cur-RON,.cur-RUB,.cur-SEK,.cur-SGD,.cur-THB,.cur-TRY,.cur-ZAR{display: none;}

1.22 Remove 0 from adults or guests selector

#inputnumadult option[value="0"] {display:none !important;}

1.23 Limit quantity selectors for upsell items

By default all the quantity selectors have a range from 0 - 250. You can limit the range:


Example 1: Set the range of the optional quantity selector for your 2nd upsell item (set 'Per Booking') to 0-4:

#optextra2 option:nth-child(n+6){display:none;}


Example 2: Set the range of the optional quantity selector for your 5th upsell item (set 'Per Room/Person/Adult/Child') to 0-20:

#optextraroom5 option:nth-child(n+22){display:none;}

1.24 Hide Check-in / Check-out selector

.b24-selector-checkin{display:none;}

.b24-selector-checkout{display:none;}

1.25 Hide number of nights selector

.b24-selector-numnight{display:none;}

1.26 Change height of full-width slider

.fullwidthjumbopropslider .b24fullcontainer-proprow1 .b24-prop-slider .item {height: 500px;}

.fullwidthjumbopropslider .b24fullcontainer-proprow1 .b24-prop-slider .carousel.slide{ height: 500px !important;}

1.27 Hide the offer description on the check-out page

.at_offersummary {display: none;}

1.28 Show number of nights on mobiles

.b24-selector-numnight { display: inline-block !important; }

1.29 Hide room picture on check-out page

.b24-guest-details-right img {display: none;}

1.30 Hide option to collect credit cards from Booking page if you want to use this option only for requests via Email

.bp2bookcollectpayment .panel-pay-card{display:none;}

1.31 Hide "Print Booking" on the confirmation screen

.conf_p{display:none;}

1.32 Hide "Click here to make another booking" on the confirmation screen

.bookagainlink{display:none;}


1.33 Adjust alignment for RTL languages (Arabic, Hebrew)

.rtlinject{ float: right; } .colorbody-he, .colorbody-he #bookingpage, .colorbody-ar, .colorbody-ar #bookingpage { text-align: right; } .colorbody-he .ssi_makeabooking, .colorbody-he .panel .fakelink, .colorbody-ar .ssi_makeabooking, .colorbody-ar .panel .fakelink{ text-align: left; } .colorbody-he .datepicker, .colorbody-he .roomoffercalendarmonth td, .colorbody-he .ssi_makeabooking .colorbody-he .b24-guest-details-left, .colorbody-he .b24-guest-details-left.propconfirmbookmessage, .colorbody-he .b24-creditcard, .colorbody-he .b24-guest-details-left, .colorbody-ar .datepicker, .colorbody-ar .roomoffercalendarmonth td, .colorbody-ar .ssi_makeabooking .colorbody-ar .b24-guest-details-left, .colorbody-ar .b24-creditcard, .colorbody-ar .b24-guest-details-left.propconfirmbookmessage, .colorbody-ar .b24-guest-details-left { float: right; } .colorbody-he .book_bookingbackright, .colorbody-he .b24-guest-details-right, .colorbody-he .questionrow div:first-child, .colorbody-he .book_securelogo, .colorbody-he .ppcancelbutton, .colorbody-ar .book_bookingbackright, .colorbody-ar .b24-guest-details-right, .colorbody-ar .questionrow div:first-child, .colorbody-ar .book_securelogo, .colorbody-ar .ppcancelbutton{ float: left; } .colorbody-he .at_offersummary ul, .colorbody-ar .at_offersummary ul{ padding-right: 0; } .colorbody-he .booktextdiv, .colorbody-ar .booktextdiv{ width: 100%; } .colorbody-he .b24-offer-cal , .colorbody-he .b24-offer-summary, .colorbody-he .b24-offer-slider { float: right; }

1.34 Change colors of warnings

.alert-danger { color: #7e7602; background-color: #fcf8bd; border-color: #fcf8bd; }

2 MULTI PROPERTY BOOKING PAGE

Custom CSS can be added in (SETTINGS) > BOOKING PAGE > MULTI BOOKING PAGE > DEVELOPERS > "Custom CSS"

2.1 Make search criteria always visible

#collapseAdvancedSearch{height: auto; display:block !important;}

.b24-agencysearchlink{display:none;}

2.2 Change height of full-width slider

.fullwidthjumboagencyslider .b24fullcontainer-ownerrow1 .b24-owner-slider .item {height: 600px;}

.fullwidthjumboagencyslider .b24fullcontainer-ownerrow1 .b24-owner-slider .carousel.slide{height: 500px !important;}

2.3 Limit the drop-down list for number of guests

By default this list goes up to 99. You can limit it with the following code. Substitute X for the desired number + 2. So, if you want the drop-down list to be limited to 10 then X=12.

#inputnumadult option:nth-child(n+6){display:none;}

#inputnumchild option:nth-child(n+6){display:none;}

2.4 Adjust alignment for RTL languages (Arabic, Hebrew)

.rtlinject{ float: right;} .colorbody-he, .colorbody-ar { text-align: right;} .colorbody-he .b24-prop-module, .colorbody-he .datepicker, . colorbody-he .roomoffercalendarmonth td, .colorbody-ar .datepicker, . colorbody-ar .roomoffercalendarmonth td{ float: right;} .colorbody-he .at_propnametext, .colorbody-ar .at_propnametext { padding-right: 10px; }

2.5 Hide Property Name

This will remove the individual property names from the Multi Property booking page.

.at_propnametext {display: none;}

3 BOOKING WIDGETS

CSS needs to be added directly in your web site

3.1 Change the hover-color in the datepicker calendar

.book-widget .ui-datepicker td .ui-state-active, .book-widget .ui-datepicker td .ui-state-hover, .book-widget.ui-datepicker td .ui-state-active, .book-widget.ui-datepicker td .ui-state-hover {background-color:#ffffff!important; color:#000000!important}

3.2 Make only Saturdays clickable in the datepicker calendar

.book-widget .ui-datepicker tr > :nth-child(1), .book-widget .ui-datepicker tr > :nth-child(2), .book-widget .ui-datepicker tr > :nth-child(3), .book-widget .ui-datepicker tr > :nth-child(4), .book-widget .ui-datepicker tr > :nth-child(5), .book-widget. ui-datepicker tr > :nth-child(7){pointer-events: none;}

4 INVOICES and PRINT TEMPLATES

Custom CSS can be added in (SETTINGS) > GUEST MANAGEMENT > STYLING > "Custom CSS"

4.1 Center invoice on the screen and set overall font size

body {text-align: center; font-size: 16px;}

4.2 Set font size of property name

#invoicepropname{font-size: 24px;}

4.3 Set font size of address

#invoiceaddress{font-size: 18px; padding-bottom: 50px;}

4.4 Set font size of the invoice table

.confirmationtable{font-size: 16px;}

4.5 Change margin

.printbooking2 {margin: 20px;}

4.6 TBC

#invoicetable{margin-left:auto; margin-right:auto;}

4.7 TBC

#invoiceprinttime{font-size: 12px;}

4.8 Hide edit button in the invoice

#iconedit {display: none;}

4.9 Align all table content right

.conf_subheadercenter, .conf_numbercenter{text-align: right !important;}

5 CONTROL PANEL

Custom CSS can be added in:

  • Click on the 'User' icon on the top right and then on 'Account Management (in the old control panel SUB ACCOUNT in the top right) then on ACCOUNT LIST to apply for all sub accounts
  • Click on the 'User' icon on the top right and then on 'Account Management (in the old control panel SUB ACCOUNT in the top right) then on ACCOUNT LIST > MANAGE ACCOUNT to apply for a specific sub account

5.1 Navigation

5.1.1 Hide SUPPORT button

.navbar-top .btngroupdropdown{display: none}

5.1.2 Hide page help icon on the right

.opener-right{display: none}

5.1.3 Change header background color

.fixed-top {background-color: #cccccc;}

5.1.4 Hide "Settings" icon in left column

.#c3sidebarCollapse{display: none !important;} {display: none;}

5.1.5 Hide "Price Checker Tool" button

.b24btn_PriceCheck {display: none}

5.1.6 Hide "Try the new calendar" link

.tryTheNewCalendar {display: none;}

5.2 Dynamic Multi-Calendar

5.2.1 Hide "Intelligence" icon

.sticky-left .row-intelligence-button{display: none;}

5.2.2 Hide "Help" icon in left column

.sticky-left .row-help-button {display: none;}

5.2.3 Hide Drag&Drop option

#dragDropButton {display: none;}

5.2.4 Hide "Notes" icon in left column

.sticky-left .fa-comment-alt-plus, .sticky-left .fa-comment-alt-lines {display: none;}

5.2.5 Hide "Intelligence" icon

.sticky-left .row-intelligence-button{display: none;}

5.2.6 Hide Group booking icons

.fa-circle{display: none;}

5.2.7 Display occupancy as color instead of number

.calendar2 .property-stats-wrapper {margin-top: 5px;} .calendar2 .property-stats-wrapper.empty { display: inline-block; background-color: #7AAB0A; height: 10px; width: 10px; border-radius: 50%; color: transparent; } .calendar2 .property-stats-wrapper.medium { display: inline-block; background-color: #fe746c; height: 10px; width: 10px; border-radius: 50%; color: transparent; }

5.2.8 Change the backgound color of weekends (Saturday/Sunday)

.th-sat, .th-sun {background-color:#ffceaf !important;}

5.2.9 Change the backgound color of past dates

.pastdate{background-color:#d7d7d7;}

5.2.10 Hide Intelligence button

.sticky-left .row-intelligence-button{display: none;}

5.2.11 Hide contect help

.sticky-left .row-help-button {display: none;}

5.2.12 Change color of unavailable dates

.inv0 { color: blue }

5.2.13 Change color and background color of daily prices

.price { background-color:#7cc576; color:white;}

5.2.14 Make inventory row read-only

.calendar2 .row-room { pointer-events: none; }

5.2.15 Make Daily Price row read-only

.row-price{ pointer-events: none; }

5.2.16 Change background and font color for "Unallocated" bookings

..pagetypecalendar2 .overflow-unit{ background-color: #FEE0DD; color: #9E4843;}

5.2.17 Hide the option to create or change views

#view-templates-button{ display: none; }

5.2.18 Disable the option to create or change views

#view-templates-button, #saveViewButton{ pointer-events: none; }

5.3 Old Calendar

5.3.1 Hide "Show" in the CALENDAR

.dashgridshowfilter {display:none;}

5.3.2 Hide "Override row" in the CALENDAR

.dashgrid_rowtype1{display:none;}

5.3.3 Hide item from dropdown for rooms in the CALENDAR

.dashgrid_rowroomname .dropdown ul.dropdown-menu li:nth-child(3) {display:none !important;}

5.3.4 Hide suitcase icon (add booking) from CALENDAR

.icon-suitcase, .fa-suitcase {display:none}

5.3.5 Hide button 'Add Booking' from CALENDAR

.b24btn_AddBooking{display:none}

5.3.6 Display red when inventory is 0

.inv0 .dashgrid_inventory{color:red;}

5.3.7 Show weekends (Saturday/Sunday) in a different color

.weekend2{background-color:red;}

5.3.8 Show a certain day of the week in red

Substitute X with the number of the weekday: Monday=1, Tuesday=2, Wednesday=3, Thursday=4, Friday=5, Saturday=6, Sunday=7 .caldayX{background-color:red;}

5.3.9 Show today in red

.todaydate{background-color:red;}

5.3.10 Show past dates in a different color

.pastdate{background-color:grey;}

5.3.11 Display room name and icons in one line

.dashgrid_rowroomname{display:inline;}

.editroomlink{padding-left: 2px;}

5.3.12 Warning color dates not selling

.dashgrid_inventory_nap{background-color: red; color: white;}

5.4 Dashboard

5.4.1 Hide the Dashboard selector (drop-down menu) from DASHBOARD

.dashcontrol #dashid{display: none !important}

5.4.2 Hide the "Padlock" menu from DASHBOARD

.dashcontrol .dropdown{display: none !important}

5.4.3 Hide a certain column in the Departures Table on the DASHBOARD

.mobiledeparture tr > *:nth-child(X) {display: none;}

5.4.4 Hide the "Add Booking" from mobile DASHBOARD

.mobiledashaddbooking{display:none;}

5.4.5 Hide room on Housekeeping Units and Housekeeping Bookings modules=

.widgettype-units .roomrowclassXXX {display: none;} /* replace XXX with the room ID*/

5.4.6 Hide column on the dashboard tables

Change the child number in brackets to the desired column.

.dashboardtable th:nth-child(9) {display:none;}

5.4.7 Hide Edit button in the Notes component

Change the child number in brackets to the desired column.

#dashboardnotea .btn {display:none;}

5.5 Align the content of a column right

.bookingtable td:nth-child(8) {text-align: right;}

5.6 Guests Menu

5.6.1 Hide a certain row in the "Info" tab on GUESTS

.pagetypeguests .viewguest .table tr:nth-child(x) {display: none; }

5.7 Bookings Menu

5.7.1 Hide property name in the BOOKING GRID

.bookgrid_rowpropname{display: none;}

5.7.2 Hide room name in the BOOKING GRID

.bookgrid_rowroomname{display: none;}

5.7.3 Hide room name in the BOOKING GRID

. pagetypebookingsgrid .todaydate{font-weight:bold;}

5.7.4 Hide a certain column in the BOOKING LIST Table

.pagetypebookingslist .bookingtable tr > *:nth-child(X) {display: none;}

Examples:

.pagetypebookingslist .bookingtable tr > *:nth-child(2) {display: none;} will hide the first column which is 'Number'.

.pagetypebookingslist .bookingtable tr > *:nth-child(11) {display: none;} will hide the tenth column which is 'Email'.

5.7.5 Hide column on the BOOKINGS table

Change the child number in brackets to the desired column.

.bookingtable th:nth-child(12) {display:none;}

5.7.6 Hide cancelled bookings BOOKINGS list

.pagetypebookingslist .cancelbooking{display:none;}

5.7.7 Hide cancelled bookings in the BOOKINGS Table

.bookingtable .cancelbooking {display:none;}

5.7.8 Hide "Export" button

.b24btn_ExportBookings {display:none;}

5.7.9 Disable moving of bookings

.pagetypebookingsgrid table {pointer-events: none;}

5.8 Fixed Prices Menu

5.8.1 Hide column on the Fixed Prices table

Change the child number in brackets to the desired column.

.ratetable th:nth-child(9) {display:none;}

5.9 Reports Menu

5.9.1 Limit selector list for custom reports

Example: Limit the list to reports 1 - 3:

#reportid option:nth-child(n+4){display:none;}

5.9.2 Hide a certain field from 'Available Columns'

Example: Hide the 'Email' field

.pagetypereports2 #guestemail {display: none;}


5.10 Settings Menu

5.10.1 Hide the "Delete" button for properties

.pagetypeproperties .b24btn_delete{display:none;}

5.10.2 Hide the "Delete" button for rooms

.pagetyperooms .b24btn_delete{display:none;}

5.11 Booking Popup

5.11.1 Hide 'Open in new Window' link

.pagetypeajaxbookedit.openinnewwindow{display:none;}

5.11.2 Charges & Payments

5.11.2.1 Hide the VAT column

.pagetypeajaxbookedit .invoicetablevat {display: none;}

Please note: This will not hide the title column (Vat %). See for yourself if you can live with it.

5.11.2.2 Prevent invoice items being deleted

.tr_invoicee .btn-danger, #groupinvoicebulkaction option[value="1"] {display:none !important;}

5.11.2.3 Prevent manual entry of charge items

.chargenewitemtr input {pointer-events: none;}

5.11.2.4 Prevent manual entry of payment items

.paymentnewitemtr input {pointer-events: none;}

5.11.3 Functions and Buttons

5.11.3.1 Hide the checkout selector

.pagetypeajaxbookedit #checkout{display:none;}

5.11.3.2 Hide the 'Delete' button

.pagetypeajaxbookedit .deletebookingbutton{display:none;}

5.11.3.3 Hide the 'Add Booking' button

.icon-suitcase, .b24btn_AddBooking{display:none;}

5.11.3.4 Hide the 'Copy as new' button

.pagetypeajaxbookedit #bookingcopyasnewbutton{display:none;}

5.11.3.5 Hide the 'Print' button

.pagetypeajaxbookedit #bookingprintbutton{display:none;}

5.11.3.6 Hide the 'Assign Invoice Number' button

.pagetypeajaxbookedit .b24btn_AssignInvoiceNumber{display:none;}

German control panel:

.pagetypeajaxbookedit .b24btn_Rechnungsnummererzeugen{display:none;}

5.11.3.7 Hide the 'Template' buttons

.pagetypeajaxbookedit #bookingtemplate1button{display:none;}

.pagetypeajaxbookedit #bookingtemplate2button{display:none;}

.pagetypeajaxbookedit #bookingtemplate3button{display:none;}

5.11.3.8 Hide the 'Continue anyway' buttons

.statusmsg .btn{display: none}

5.11.3.9 Prevent changes of the "Status" field"

.menusetting-status{pointer-events: none;}

5.11.4 Hide Specific Fields

5.11.4.1 TAB Summary

Guest title

.pagetypeajaxbookedit .menusetting-guesttitle{display:none;}

Last Name

.pagetypeajaxbookedit .menusetting-guestname{display:none;}

Guest comments

.pagetypeajaxbookedit .menusetting-guestcomments{display:none;}

Notes

.pagetypeajaxbookedit .menusetting-hostcomments{display:none;}

Adults

.pagetypeajaxbookedit .menusetting-numadults{display:none;}

Children

.pagetypeajaxbookedit .menusetting-numchild{display:none;}

Telephone

.pagetypeajaxbookedit .menusetting-guestphone{display:none;}

Mobile

.pagetypeajaxbookedit .menusetting-guestmobile{display:none;}

Fax

.pagetypeajaxbookedit .menusetting-guestfax{display:none;}

Address

.pagetypeajaxbookedit .menusetting-guestaddress{display:none;}

City

.pagetypeajaxbookedit .menusetting-guestcity{display:none;}

Postcode

.pagetypeajaxbookedit .menusetting-guestpostcode{display:none;}

Country (manual entry)

.pagetypeajaxbookedit .menusetting-guestcountry{display:none;}

Country (drop-down list)

.pagetypeajaxbookedit .menusetting-guestcountry2{display:none;}

Status

.pagetypeajaxbookedit .menusetting-status{display:none;}

Room Selector .pagetypeajaxbookedit .menusetting-roomid{display:none;}


5.11.4.2 TAB Detail

Message

.pagetypeajaxbookedit .menusetting-hostmessage{display:none;}

Custom Questions (X = number of custom question)

.pagetypeajaxbookedit .menusetting-guestcustqX{display:none;}

Reference

.pagetypeajaxbookedit .menusetting-ownerreference{display:none;}

Quantity

.pagetypeajaxbookedit .menusetting-qty{display:none;}

Cancellable

.pagetypeajaxbookedit .menusetting-stopcancel{display:none;}

Flag

.pagetypeajaxbookedit .menusetting-flagtext{display:none;}

Status Code

.pagetypeajaxbookedit .menusetting-statuscode{display:none;}

Created in Account

.pagetypeajaxbookedit .menusetting-Createdinaccount{display:none;}

Original Referrer

.pagetypeajaxbookedit .menusetting-OriginalReferrer{display:none;}

Time Entered

.pagetypeajaxbookedit .menusetting-TimeEntered{display:none;}

IP Address

.pagetypeajaxbookedit .menusetting-IPAddress{display:none;}

API Message

.pagetypeajaxbookedit .menusetting-apimessage{display:none;}

Guest Database

.pagetypeajaxbookedit .menusetting-isguest{display:none;}

5.11.4.3 TAB Mail & Actions

Email

.pagetypeajaxbookedit .menusetting-guestemail{display:none;}

5.12 Add Booking

5.12.1 Prevent price to be changed

..pagetypeajaxbookedit .menusetting-unitprice, .pagetypeajaxbookedit .menusetting-price { pointer-events: none;}

5.13 Reports

Custom CSS can be added in (SETTINGS) > GUEST MANAGEMENT > STYLING > "Custom CSS"

5.13.1 Hide a the "Booking Notes" column in the Daily Unit Activity report

.reportdailyunitactivity th > *:nth-child(9) {display: none;}

.reportdailyunitactivity td > *:nth-child(9) {display: none;}

5.14 Miscellaneous

5.14.1 Change the blue Login button on the initial Beds24 page (resellers only)

.pagetypelogin .b24btn_Login{background-color:#xxxxxx;}

5.14.2 Hide the "Stripe" button

#makechargeusing{display:none;}

5.14.3 Hide the Stripe "Refund" button

#b24btn_Refund{display:none;}

If your are using the control panel in another language than English you might need to replace the word Refund with what you see on the button.

5.14.4 Hide potential issue "Less than 12 months available"

.warninglessthan12monthsavailable{ display: none}

5.14.5 Hide potential issue "Too many guests in booking xxxxx"

..warningunitnotassigned{ display: none}

5.14.6 Hide 'Template 2' from Guest Management > Booking Templates

.pagetypecommunicationbooktemplate #settingformid .background_boxprop:nth-of-type(2){display:none;}

5.14.7 Hide the option to unlock invoices

.menusetting-invoicelock {display:none;}