Difference between revisions of "Custom CSS"

From Beds24 Wiki
Jump to navigation Jump to search
Line 18: Line 18:
  
 
=== Disable click on calendar selector===
 
=== Disable click on calendar selector===
 +
  
 
*Disable month back-and-forth toggle
 
*Disable month back-and-forth toggle
 
:<code>.monthcalendarhead{pointer-events: none;}</code>
 
:<code>.monthcalendarhead{pointer-events: none;}</code>
  
;Disable clicks on dates
+
 
  .roomoffercalendarmonth{pointer-events: none;}
+
*Disable clicks on dates
 +
  :.roomoffercalendarmonth{pointer-events: none;}
  
 
=== Mark dates when check-out is not allowed (i.e. for rentals on a weekly basis)===
 
=== Mark dates when check-out is not allowed (i.e. for rentals on a weekly basis)===

Revision as of 04:58, 25 August 2018


This page gives CSS examples'

1 Booking page

  • Custom CSS can be added in SETTINGS > BOOKING PAGE > MULTIPLE PROPERTIES > DEVELOPERS > "Custom CSS"
  • 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 click on calendar selector

  • Disable month back-and-forth toggle
.monthcalendarhead{pointer-events: none;}


  • 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

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

1.10 Add a border around the selected dates

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

1.11 Line through unavailable dates

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

1.12 Change width of hover image (adaptive booking page only)

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

1.13 Remove the hover effect on pictures (adaptive booking page only)

img{pointer-events: none;}

1.14 Add a label above the room selector for multiple room bookings (responsive booking page only)

.roomofferqtyselectlabel{display: block;}

1.15 Hide up button (responsive booking page only)

footer .button{display: none;}

1.16 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.17 Hide icons (responsive booking page only)

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

1.18 Change text color of language selector and currency selector (responsive booking page only)

#topofthebookingpage{
color: #ffffff 
}

exchange ffffff with the hex code of the color you want to use.

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