Custom CSS

From Beds24 Wiki
Revision as of 09:00, 7 January 2020 by Annette (talk | contribs)
Jump to navigation Jump to search


This page gives Custom CSS examples

Contents

1 BOOKING PAGE

Custom CSS can be added in SETTINGS > 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.3 Mark dates when 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-in and check-out in the CALENDAR (click on "Override") to use this function.

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

1.4 Background Image

To use a background image upload it to SETTINGS -> BOOKING PAGE -> PICTURES.

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

body{background-image:url(https://www.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)

#bookingpage{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.

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

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;}


2 MULTIPLE BOOKING PAGE

Custom CSS can be added in SETTINGS > BOOKING PAGE > MULTIPLE PROPERTIES > 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+X){display:none;}

3 INVOICES and PRINT TEMPLATES

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

3.1 Center invoice on the screen and set overall font size

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

3.2 Set font size of property name

#invoicepropname{font-size: 24px;}

3.3 Set font size of address

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

3.4 Set font size of the invoice table

.confirmationtable{font-size: 16px;}

3.5 Change margin

.printbooking2 {margin: 20px;}

3.6 TBC

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

3.7 TBC

#invoiceprinttime{font-size: 12px;}

3.8 Hide edit button in the invoice

#iconedit {display: none;}


4 CONTROL PANEL

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

4.1 Calendar

4.1.1 Hide "Show" in the CALENDAR

.dashgridshowfilter {display:none;}

4.1.2 Hide "Override row" in the CALENDAR

.dashgrid_rowtype1{display:none;}

4.1.3 Hide item from dropdown for rooms in the CALENDAR

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

4.1.4 Hide suitcase icon (add booking) and the button 'Add Booking' from CALENDAR

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

4.1.5 Display red when inventory is 0

.inv0 .dashgrid_inventory{color:red;}

4.1.6 Show weekends (Saturday/Sunday) in red

.weekend2{background-color:red;}

4.1.7 Show a certain day of the week in red

Example: calday5 can be used to change the color of Fridays.

.calday5{background-color:red;}

4.1.8 Show past dates in grey

.pastdate{background-color:grey;}

4.1.9 Display room name and icons in one line

.dashgrid_rowroomname{display:inline;}
.editroomlink{padding-left: 2px;}

4.2 Dashboard

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

.dashcontrol #dashid{display: none !important}

4.2.2 Hide the "Hamburger" menu from DASHBOARD

.dashcontrol .dropdown{display: none !important}

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

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

4.2.4 Hide the "Add Booking" from mobile DASHBOARD

.mobiledashaddbooking{display:none;}


4.3 Guests Menu

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

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


4.4 Bookings Menu

4.4.1 Hide property name in the BOOKING GRID

.bookgrid_rowpropname{display: none;}

4.4.2 Hide room name in the BOOKING GRID

.bookgrid_rowroomname{display: none;}

4.4.3 Hide a certain column in the BOOKING LIST Table

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

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

4.4.4 Hide cancelled bookings in the BOOKING Table

.bookingtable .cancelbooking {display:none;}

4.4.5 Hide "Export" button

.b24btn_ExportBookings {display:none;}

4.5 Rates Menu

4.5.1 Hide a certain column in the RATES Table

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

4.6 Reports Menu

4.6.1 Limit selector list for custom reports

Example: Limit the list to reports 1 - 3:

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

4.6.2 Hide a certain field from 'Available Columns'

Example: Hide the 'Email' field

.pagetypereports2 #guestemail {display: none;}

4.7 Booking Popup

4.7.1 Hide 'Open in new Window' link

.pagetypeajaxbookedit.openinnewwindow{display:none;}


4.7.2 Charges & Payments

4.7.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.

4.7.3 Functions and Buttons

4.7.3.1 Hide the checkout selector

.pagetypeajaxbookedit #checkout{display:none;}

4.7.3.2 Hide the 'Delete' button

.pagetypeajaxbookedit .deletebookingbutton{display:none;}

4.7.3.3 Hide the 'Add Booking' button

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

4.7.3.4 Hide the 'Copy as new' button

.pagetypeajaxbookedit #bookingcopyasnewbutton{display:none;}

4.7.3.5 Hide the 'Print' button

.pagetypeajaxbookedit #bookingprintbutton{display:none;}

4.7.3.6 Hide the 'Assign Invoice Number' button

.pagetypeajaxbookedit .b24btn_AssignInvoiveNumber{display:none;}
German Version: .pagetypeajaxbookedit .b24btn_Rechnungsnummererzeugen{display:none;}

4.7.3.7 Hide the 'Template' buttons

.pagetypeajaxbookedit #bookingtemplate1button{display:none;}
.pagetypeajaxbookedit #bookingtemplate2button{display:none;}
.pagetypeajaxbookedit #bookingtemplate3button{display:none;}


4.7.4 Hide Specific Fields

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

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

Country

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

Status

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

Room Selector

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

Flag

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

Email (under the Email tab)

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

4.8 Miscellaneous

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

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

4.8.2 Hide the "Make a Charge using Stripe" button

#makechargeusing{display:none;}

4.8.3 Hide potential issue "Less than 12 months available"

.warninglessthan12monthsavailable{ display: none}

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

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