Difference between revisions of "Custom CSS"
m (1版 をインポートしました) |
Beds24>Annette (→Add icons to descriptive texts (Responsive Booking Page only)) |
||
Line 2: | Line 2: | ||
[[Category:Widgets]] | [[Category:Widgets]] | ||
[[Category:Booking Page]] | [[Category:Booking Page]] | ||
− | [[Category: | + | [[Category:Account]] |
− | + | [[Category:Booking_Engine]] | |
− | + | [[Category:Customise_Control_Panel]] | |
+ | <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. | ||
__TOC__ | __TOC__ | ||
− | + | = PROPERTY BOOKING PAGE = | |
− | = | + | <span class="" style="color: #f3e504; font-size: 250%;" >{{#fas:lightbulb}} </span> Custom CSS can be added in {{#fas:cog}} (SETTINGS) BOOKING ENGINE > PROPERTY BOOKING PAGE DEVELOPERS > "Custom CSS" |
− | |||
− | Custom CSS can be added in SETTINGS > BOOKING PAGE | ||
=== Bigger room name === | === Bigger room name === | ||
− | + | <code> .at_roomnametext{font-size: 14px;} /*if you want the text even bigger use a higher number*/</code> | |
− | |||
=== Disable clicks on calendar selector=== | === Disable clicks on calendar selector=== | ||
====Disable month back-and-forth toggle==== | ====Disable month back-and-forth toggle==== | ||
− | + | <code> .monthcalendarhead{pointer-events: none;}</code> | |
====Disable clicks on dates==== | ====Disable clicks on dates==== | ||
− | + | <code> .roomoffercalendarmonth{pointer-events: none;}</code> | |
=== 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)=== | ||
Line 29: | Line 28: | ||
NOTE: Limit the check-in and check-out in the CALENDAR (click on "Override") to use this function. | NOTE: Limit the check-in and check-out in the CALENDAR (click on "Override") to use this function. | ||
− | + | <code> .datenco{background-color:#f4f4f4; color:#cccccc;}</code> | |
=== Background Image === | === Background Image === | ||
− | To use a background image upload it to SETTINGS | + | To use a background image upload it to {{#fas:cog}} (SETTINGS) > BOOKING ENGINE > PICTURES. |
− | Replace '<nowiki>https:// | + | Replace '<nowiki>https://beds24.com/pic/p0000/2049/04.jpg</nowiki>' with the url of your uploaded picture. |
− | + | <code> body{background-image:url(<nowiki>https://beds24.com/pic/p0000/2049/04.jpg</nowiki>);}</code> | |
=== Shadow around your Booking Page (Adaptive Booking Page only)=== | === Shadow around your Booking Page (Adaptive Booking Page only)=== | ||
− | + | <code>.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;}</code> | |
− | |||
− | |||
=== Booking Page with rounded corners (Adaptive Booking Page only)=== | === Booking Page with rounded corners (Adaptive Booking Page only)=== | ||
− | + | <code>{border-radius:7px; -webkit-border-radius:7px; -moz-border-radius:7px;}</code> | |
− | |||
=== Hide cents=== | === Hide cents=== | ||
− | + | <code>.bookingpagecents {display:none;}</code> | |
− | |||
=== Show prices with cents even if cents are zero === | === Show prices with cents even if cents are zero === | ||
− | + | <code>.bookingpagecentshide {display:inline;}</code> | |
− | |||
=== Mark certain fields in the calendar selector=== | === Mark certain fields in the calendar selector=== | ||
Line 70: | Line 64: | ||
Example 1: Set the font color for the weekday heading of Monday ('Mon') | Example 1: Set the font color for the weekday heading of Monday ('Mon') | ||
− | + | <code>.dayMon{color:#c44a2f !important;}</code> | |
Example 2: Set the background color for the weekday heading of Monday ('Mon') | Example 2: Set the background color for the weekday heading of Monday ('Mon') | ||
− | + | <code>.dayMon{background-color:#c44a2f !important;}</code> | |
Example 3: Set the font color for all the dates that fall on a Saturday | Example 3: Set the font color for all the dates that fall on a Saturday | ||
− | + | <code>.daysat{color:#c44a2f !important;}</code> | |
Example 4: Add a border around all the dates that fall on a Sunday | Example 4: Add a border around all the dates that fall on a Sunday | ||
− | + | <code>.daysun{border:1px solid #999999 !important;}</code> | |
=== Add a border around the selected dates=== | === Add a border around the selected dates=== | ||
− | .datestay{border: 1px solid #2f2f2f !important;} | + | <code>.datestay{border: 1px solid #2f2f2f !important;}</code> |
+ | |||
+ | |||
+ | <span class="" style="color: #f3e504; font-size: 250%;" >{{#fas:lightbulb}} </span> If you use split dates the CSS is: | ||
+ | <code>.prevdatestay, .datestay{border: 1px solid #2f2f2f !important;}</code> | ||
=== Line through unavailable dates=== | === Line through unavailable dates=== | ||
− | + | <code>.datenotavail{text-decoration: line-through;}</code> | |
=== Mark past dates with a different background and text colour=== | === Mark past dates with a different background and text colour=== | ||
− | + | <code>.datepast{background-color: #xxxxxx; color: #xxxxxx;}</code> | |
=== Change width of hover image (Adaptive Booking Page only)=== | === Change width of hover image (Adaptive Booking Page only)=== | ||
− | + | <code>.ui-tooltip{max-width: 500px;}</code> | |
=== Remove the hover effect on pictures (Adaptive Booking Page only)=== | === Remove the hover effect on pictures (Adaptive Booking Page only)=== | ||
− | + | <code>img{pointer-events: none;}</code> | |
=== Add a label above the room selector for multiple room bookings (Responsive Booking Page only)=== | === Add a label above the room selector for multiple room bookings (Responsive Booking Page only)=== | ||
− | + | <code>.roomofferqtyselectlabel{display: block;}</code> | |
=== Hide up button (Responsive Booking Page only)=== | === Hide up button (Responsive Booking Page only)=== | ||
− | + | <code>footer .button{display: none;}</code> | |
=== Add icons to descriptive texts (Responsive Booking Page only)=== | === Add icons to descriptive texts (Responsive Booking Page only)=== | ||
Line 113: | Line 111: | ||
Examples: | Examples: | ||
− | <nowiki><span class="glyphicon glyphicon-user" aria-hidden="true"></span> | + | <code><nowiki><span class="glyphicon glyphicon-user" aria-hidden="true"></span></nowiki></code> |
− | </nowiki> | + | |
will add a Bootstap icon for a person. | will add a Bootstap icon for a person. | ||
− | <nowiki><i class="fa fa-bicycle" aria-hidden="true"></i> | + | <code><nowiki><i class="fa fa-bicycle" aria-hidden="true"></i></nowiki></code> |
− | </nowiki> | + | |
will add a Font Awesomeicon for a bicycle. | will add a Font Awesomeicon for a bicycle. | ||
− | + | <span style=color:#fe746c;“ >{{#fas:exclamation-triangle}} </span> 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 | ||
+ | |||
+ | <code><link rel="stylesheet" href="include/font-awesome/fontawesome-pro-5.14.0-web/css/all.min.css"></code> | ||
+ | |||
+ | in the "Head" section in {{#fas:cog}} (SETTINGS) BOOKING ENGINE > PROPERTY BOOKING PAGE > DEVELOPER / {{#fas:cog}} (SETTINGS) BOOKING ENGINE > MULTIBOOKING PAGE > DEVELOPER. | ||
=== Hide icons (Responsive Booking Page only)=== | === Hide icons (Responsive Booking Page only)=== | ||
− | + | <code>.b24fa{display:none;}</code> | |
− | + | <code>#b24scroller .input-group-addon{display:none;}</code> | |
=== Change text color of language selector and currency selector (Responsive Booking Page only)=== | === Change text color of language selector and currency selector (Responsive Booking Page only)=== | ||
− | + | <code>.b24languagedropdown .btn, .b24languagedropdown .btn.active, .b24languagedropdown .btn:active, .b24currencydropdown .btn, .b24currencydropdown .btn.active, .b24currencydropdown.btn:active {color:#fff;}</code> | |
=== Make language selector and currency selector a button (Responsive Booking Page only)=== | === Make language selector and currency selector a button (Responsive Booking Page only)=== | ||
− | + | <code>.b24languagedropdown .btn, .b24languagedropdown .btn.active, .b24languagedropdown .btn:active, .b24currencydropdown .btn, .b24currencydropdown .btn.active, .b24currencydropdown.btn:active {background:white; padding:10px;}</code> | |
− | |||
− | |||
− | |||
− | |||
=== Hide currencies from the currency selector (Responsive Booking Page only) === | === Hide currencies from the currency selector (Responsive Booking Page only) === | ||
− | |||
The currency class format is: '''.cur-XXX'''. | The currency class format is: '''.cur-XXX'''. | ||
Line 147: | Line 146: | ||
This code will remove all currencies except for Euros, Swiss Francs and US Dollars: | This code will remove all currencies except for Euros, Swiss Francs and US Dollars: | ||
− | + | <code>.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;}</code> | |
+ | |||
+ | === Remove 0 from adults or guests selector === | ||
+ | <code>#inputnumadult option[value="0"] {display:none !important;}</code> | ||
=== Limit quantity selectors for upsell items === | === Limit quantity selectors for upsell items === | ||
− | |||
By default all the quantity selectors have a range from 0 - 250. You can limit the range: | By default all the quantity selectors have a range from 0 - 250. You can limit the range: | ||
Line 156: | Line 157: | ||
Example 1: Set the range of the optional quantity selector for your 2nd upsell item (set 'Per Booking') to 0-4: | Example 1: Set the range of the optional quantity selector for your 2nd upsell item (set 'Per Booking') to 0-4: | ||
− | + | <code>#optextra2 option:nth-child(n+6){display:none;}</code> | |
Example 2: Set the range of the optional quantity selector for your 5th upsell item (set 'Per Room/Person/Adult/Child') to 0-20: | Example 2: Set the range of the optional quantity selector for your 5th upsell item (set 'Per Room/Person/Adult/Child') to 0-20: | ||
− | + | <code>#optextraroom5 option:nth-child(n+22){display:none;}</code> | |
− | === | + | === Hide Check-in / Check-out selector === |
+ | <code>.b24-selector-checkin{display:none;}</code> | ||
− | + | <code>.b24-selector-checkout{display:none;}</code> | |
− | + | === Hide number of nights selector === | |
+ | <code>.b24-selector-numnight{display:none;}</code> | ||
=== Change height of full-width slider === | === Change height of full-width slider === | ||
− | + | <code>.fullwidthjumbopropslider .b24fullcontainer-proprow1 .b24-prop-slider .item {height: 500px;}</code> | |
− | + | <code>.fullwidthjumbopropslider .b24fullcontainer-proprow1 .b24-prop-slider .carousel.slide{ height: 500px !important;}</code> | |
− | = | + | === Hide the offer description on the check-out page=== |
− | Custom CSS can be added in SETTINGS > BOOKING PAGE > | + | <code>.at_offersummary {display: none;}</code> |
+ | |||
+ | === Show number of nights on mobiles=== | ||
+ | <code>.b24-selector-numnight { display: inline-block !important; }</code> | ||
+ | |||
+ | === Hide room picture on check-out page=== | ||
+ | <code>.b24-guest-details-right img {display: none;}</code> | ||
+ | |||
+ | === Hide option to collect credit cards from Booking page if you want to use this option only for requests via Email=== | ||
+ | <code>.bp2bookcollectpayment .panel-pay-card{display:none;}</code> | ||
+ | |||
+ | |||
+ | = MULTI PROPERTY BOOKING PAGE = | ||
+ | <span class="" style="color: #f3e504; font-size: 250%;" >{{#fas:lightbulb}} </span> Custom CSS can be added in {{#fas:cog}} (SETTINGS) > BOOKING PAGE > MULTI BOOKING PAGE > DEVELOPERS > "Custom CSS" | ||
=== Make search criteria always visible === | === Make search criteria always visible === | ||
− | + | <code>#collapseAdvancedSearch{height: auto; display:block !important;}</code> | |
− | + | <code>.b24-agencysearchlink{display:none;}</code> | |
=== Change height of full-width slider === | === Change height of full-width slider === | ||
− | + | <code>.fullwidthjumboagencyslider .b24fullcontainer-ownerrow1 .b24-owner-slider .item {height: 600px;}</code> | |
+ | |||
+ | <code>.fullwidthjumboagencyslider .b24fullcontainer-ownerrow1 .b24-owner-slider .carousel.slide{height: 500px !important;}</code> | ||
− | + | === 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. | ||
− | = | + | <code>#inputnumadult option:nth-child(n+X){display:none;}</code> |
− | + | ||
+ | = INVOICES and PRINT TEMPLATES = | ||
+ | Custom CSS can be added in {{#fas:cog}} (SETTINGS) > GUEST MANAGEMENT > STYLING > "Custom CSS" | ||
=== Center invoice on the screen and set overall font size=== | === Center invoice on the screen and set overall font size=== | ||
− | + | <code>body {text-align: center; font-size: 16px;}</code> | |
=== Set font size of property name === | === Set font size of property name === | ||
− | + | <code>#invoicepropname{font-size: 24px;}</code> | |
=== Set font size of address === | === Set font size of address === | ||
− | + | <code>#invoiceaddress{font-size: 18px; padding-bottom: 50px;}</code> | |
+ | |||
+ | === Set font size of the invoice table === | ||
+ | <code>.confirmationtable{font-size: 16px;}</code> | ||
+ | |||
+ | === Change margin=== | ||
+ | <code>.printbooking2 {margin: 20px;}</code> | ||
=== TBC === | === TBC === | ||
− | + | <code>#invoicetable{margin-left:auto; margin-right:auto;}</code> | |
=== TBC === | === TBC === | ||
− | + | <code>#invoiceprinttime{font-size: 12px;}</code> | |
=== Hide edit button in the invoice === | === Hide edit button in the invoice === | ||
− | + | <code>#iconedit {display: none;}</code> | |
+ | |||
− | = | + | = CONTROL PANEL = |
Custom CSS can be added in: | Custom CSS can be added in: | ||
− | *SUB | + | *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 |
− | *SUB | + | *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 |
+ | |||
+ | == Calendar == | ||
+ | |||
+ | ===Hide "Show" in the CALENDAR=== | ||
+ | <code>.dashgridshowfilter {display:none;}</code> | ||
+ | |||
+ | ===Hide "Override row" in the CALENDAR=== | ||
+ | <code>.dashgrid_rowtype1{display:none;}</code> | ||
+ | |||
+ | ===Hide item from dropdown for rooms in the CALENDAR=== | ||
+ | <code>.dashgrid_rowroomname .dropdown ul.dropdown-menu li:nth-child(3) {display:none !important;}</code> | ||
+ | |||
+ | ===Hide suitcase icon (add booking) from CALENDAR=== | ||
+ | <code>.icon-suitcase {display:none}</code> | ||
+ | |||
+ | ===Hide button 'Add Booking' from CALENDAR=== | ||
+ | <code>.b24btn_AddBooking{display:none}</code> | ||
+ | |||
+ | ===Display red when inventory is 0=== | ||
+ | <code>.inv0 .dashgrid_inventory{color:red;}</code> | ||
+ | |||
+ | ===Show weekends (Saturday/Sunday) in a different color=== | ||
+ | <code>.weekend2{background-color:red;}</code> | ||
+ | |||
+ | ===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 | ||
+ | <code>.caldayX{background-color:red;}</code> | ||
+ | |||
+ | ===Show today in red=== | ||
+ | <code>.todaydate{background-color:red;}</code> | ||
+ | |||
+ | ===Show past dates in a different color=== | ||
+ | <code>.pastdate{background-color:grey;}</code> | ||
+ | |||
+ | ===Display room name and icons in one line=== | ||
+ | <code>.dashgrid_rowroomname{display:inline;}</code> | ||
+ | |||
+ | <code>.editroomlink{padding-left: 2px;}</code> | ||
+ | ===Warning color dates not selling=== | ||
+ | <code> .dashgrid_inventory_nap{background-color: red; color: white;}</code> | ||
+ | |||
+ | == Dashboard == | ||
+ | ===Hide the Dashboard selector (drop-down menu) from DASHBOARD=== | ||
+ | <code>.dashcontrol #dashid{display: none !important}</code> | ||
+ | |||
+ | ===Hide the "Hamburger" menu from DASHBOARD=== | ||
+ | <code>.dashcontrol .dropdown{display: none !important}</code> | ||
+ | |||
+ | === Hide a certain column in the Departures Table on the DASHBOARD=== | ||
+ | <code>.mobiledeparture tr > *:nth-child(X) {display: none;}</code> | ||
===Hide the "Add Booking" from mobile DASHBOARD=== | ===Hide the "Add Booking" from mobile DASHBOARD=== | ||
− | + | <code>.mobiledashaddbooking{display:none;}</code> | |
− | === | + | ===Hide room on Housekeeping Units and Housekeeping Bookings modules==== |
− | + | ||
+ | .widgettype-units .roomrowclassXXX {display: none;} /* replace XXX with the room ID*/ | ||
− | + | ==Hide column on the dashboard tables== | |
− | + | Change the child number in brackets to the desired column. | |
− | + | <code>.dashboardtable th:nth-child(9) {display:none;}</code> | |
− | |||
− | + | <code>.dashboardtable td:nth-child(9) {display:none;}</code> | |
− | |||
− | === | + | ===Align the content of a column right=== |
− | . | + | <code> .bookingtable td:nth-child(8) {text-align: right;} </code> |
− | === | + | == Guests Menu == |
− | |||
− | . | + | === Hide a certain row in the "Info" tab on GUESTS=== |
+ | <code>.pagetypeguests .viewguest .table tr:nth-child(x) {display: none; }</code> | ||
− | |||
− | ===Hide | + | == Bookings Menu == |
− | . | + | === Hide property name in the BOOKING GRID === |
+ | <code>.bookgrid_rowpropname{display: none;}</code> | ||
− | ===Hide | + | === Hide room name in the BOOKING GRID === |
− | . | + | <code>.bookgrid_rowroomname{display: none;}</code> |
− | ===Hide | + | === Hide a certain column in the BOOKING LIST Table === |
− | + | <code>.pagetypebookingslist .bookingtable tr > *:nth-child(X) {display: none;}</code> | |
− | === Hide the " | + | 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(10) {display: none;}</code> will hide the tenth column which is 'Email'. | ||
+ | |||
+ | ===Hide column on the BOOKINGS table=== | ||
+ | Change the child number in brackets to the desired column. | ||
+ | |||
+ | <code> .bookingtable th:nth-child(12) {display:none;} </code> | ||
+ | |||
+ | <code> .bookingtable td:nth-child(12) {display:none;} </code> | ||
+ | |||
+ | === Hide cancelled bookings in the BOOKINGS Table === | ||
+ | <code>.bookingtable .cancelbooking {display:none;}</code> | ||
+ | |||
+ | === Hide "Export" button === | ||
+ | <code>.b24btn_ExportBookings {display:none;}</code> | ||
+ | |||
+ | == Rates Menu == | ||
+ | ===Hide column on the rates table=== | ||
+ | Change the child number in brackets to the desired column. | ||
+ | |||
+ | <code> .ratetable th:nth-child(9) {display:none;} </code> | ||
+ | |||
+ | <code> .ratetable td:nth-child(9) {display:none;} </code> | ||
+ | |||
+ | |||
+ | == Reports Menu == | ||
+ | === Limit selector list for custom reports === | ||
+ | |||
+ | Example: Limit the list to reports 1 - 3: | ||
+ | |||
+ | <code>#reportid option:nth-child(n+4){display:none;}</code> | ||
+ | |||
+ | === Hide a certain field from 'Available Columns' === | ||
+ | |||
+ | Example: Hide the 'Email' field | ||
+ | |||
+ | <code>.pagetypereports2 #guestemail {display: none;}</code> | ||
+ | |||
+ | |||
+ | == Settings Menu == | ||
+ | === Hide the "Delete" button for properties === | ||
+ | <code>.pagetypeproperties .b24btn_delete{display:none;}</code> | ||
+ | |||
+ | |||
+ | ==Booking Popup== | ||
+ | ===Hide 'Open in new Window' link=== | ||
+ | <code>.pagetypeajaxbookedit.openinnewwindow{display:none;}</code> | ||
+ | |||
+ | === Charges & Payments === | ||
+ | ====Hide the VAT column==== | ||
+ | <code>.pagetypeajaxbookedit .invoicetablevat {display: none;}</code> | ||
+ | |||
+ | Please note: This will not hide the title column (Vat %). See for yourself if you can live with it. | ||
+ | |||
+ | === Functions and Buttons === | ||
+ | ====Hide the checkout selector==== | ||
+ | <code>.pagetypeajaxbookedit #checkout{display:none;}</code> | ||
+ | |||
+ | ====Hide the 'Delete' button==== | ||
+ | <code>.pagetypeajaxbookedit .deletebookingbutton{display:none;}</code> | ||
+ | |||
+ | ====Hide the 'Add Booking' button==== | ||
+ | <code>.icon-suitcase, .b24btn_AddBooking{display:none;}</code> | ||
+ | |||
+ | ====Hide the 'Copy as new' button==== | ||
+ | <code>.pagetypeajaxbookedit #bookingcopyasnewbutton{display:none;}</code> | ||
+ | |||
+ | ====Hide the 'Print' button==== | ||
+ | <code>.pagetypeajaxbookedit #bookingprintbutton{display:none;}</code> | ||
+ | |||
+ | ====Hide the 'Assign Invoice Number' button==== | ||
+ | <code>.pagetypeajaxbookedit .b24btn_AssignInvoiveNumber{display:none;}</code> | ||
+ | |||
+ | German control panel: | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .b24btn_Rechnungsnummererzeugen{display:none;}</code> | ||
+ | |||
+ | ====Hide the 'Template' buttons==== | ||
+ | <code>.pagetypeajaxbookedit #bookingtemplate1button{display:none;}</code> | ||
+ | |||
+ | <code>.pagetypeajaxbookedit #bookingtemplate2button{display:none;}</code> | ||
+ | |||
+ | <code>.pagetypeajaxbookedit #bookingtemplate3button{display:none;}</code> | ||
− | === Hide | + | ====Hide the 'Continue anyway' buttons==== |
+ | <code>.statusmsg .btn{display: none}</code> | ||
− | + | === Hide Specific Fields === | |
− | + | ====TAB Summary==== | |
Guest title | Guest title | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guesttitle{display:none;}</code> | ||
Last Name | Last Name | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestname{display:none;}</code> | ||
Guest comments | Guest comments | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestcomments{display:none;}</code> | ||
Notes | Notes | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-hostcomments{display:none;}</code> | ||
Adults | Adults | ||
− | |||
− | Children | + | <code>.pagetypeajaxbookedit .menusetting-numadults{display:none;}</code> |
− | .pagetypeajaxbookedit .menusetting-numchild{display:none;} | + | |
+ | Children | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-numchild{display:none;}</code> | ||
Telephone | Telephone | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestphone{display:none;}</code> | ||
Mobile | Mobile | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestmobile{display:none;}</code> | ||
Fax | Fax | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestfax{display:none;}</code> | ||
Address | Address | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestaddress{display:none;}</code> | ||
City | City | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-guestcity{display:none;}</code> | ||
Postcode | Postcode | ||
− | |||
− | Country | + | <code>.pagetypeajaxbookedit .menusetting-guestpostcode{display:none;}</code> |
− | + | ||
+ | Country (manual entry) | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-guestcountry{display:none;}</code> | ||
+ | |||
+ | Country (drop-down list) | ||
− | + | <code>.pagetypeajaxbookedit .menusetting-guestcountry2{display:none;}</code> | |
− | |||
Status | Status | ||
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-status{display:none;}</code> | ||
Room Selector | Room Selector | ||
− | + | <code>.pagetypeajaxbookedit .menusetting-roomid{display:none;}</code> | |
+ | |||
+ | |||
+ | ====TAB Detail==== | ||
+ | Message | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-hostmessage{display:none;}</code> | ||
+ | |||
+ | Custom Questions (X = number of custom question) | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-guestcustqX{display:none;}</code> | ||
+ | |||
+ | Reference | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-ownerreference{display:none;}</code> | ||
+ | |||
+ | Quantity | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-qty{display:none;}</code> | ||
+ | |||
+ | Cancellable | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-stopcancel{display:none;}</code> | ||
Flag | Flag | ||
− | |||
− | + | <code>.pagetypeajaxbookedit .menusetting-flagtext{display:none;}</code> | |
− | |||
− | + | Status Code | |
− | |||
− | + | <code>.pagetypeajaxbookedit .menusetting-statuscode{display:none;}</code> | |
− | |||
− | + | Created in Account | |
− | |||
− | + | <code>.pagetypeajaxbookedit .menusetting-Createdinaccount{display:none;}</code> | |
− | |||
− | === Hide | + | Original Referrer |
− | + | ||
+ | <code>.pagetypeajaxbookedit .menusetting-OriginalReferrer{display:none;}</code> | ||
+ | |||
+ | Time Entered | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-TimeEntered{display:none;}</code> | ||
+ | |||
+ | IP Address | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-IPAddress{display:none;}</code> | ||
+ | |||
+ | API Message | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-apimessage{display:none;}</code> | ||
+ | |||
+ | Guest Database | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-isguest{display:none;}</code> | ||
+ | |||
+ | ====TAB Mail & Actions==== | ||
+ | Email | ||
+ | |||
+ | <code>.pagetypeajaxbookedit .menusetting-guestemail{display:none;}</code> | ||
+ | |||
+ | ==Reports == | ||
+ | <span class="" style="color: #f3e504; font-size: 250%;" >{{#fas:lightbulb}} </span> Custom CSS can be added in {{#fas:cog}} (SETTINGS) > GUEST MANAGEMENT > STYLING > "Custom CSS" | ||
+ | |||
+ | === Hide a the "Booking Notes" column in the Daily Unit Activity report=== | ||
+ | <code>.reportdailyunitactivity th > *:nth-child(9) {display: none;}</code> | ||
+ | |||
+ | <code>.reportdailyunitactivity td > *:nth-child(9) {display: none;}</code> | ||
+ | |||
+ | == Miscellaneous == | ||
− | === | + | ===Change the blue Login button on the initial Beds24 page (resellers only)=== |
− | + | <code>.pagetypelogin .b24btn_Login{background-color:#xxxxxx;}</code> | |
− | = | + | === Hide the "Make a Charge using Stripe" button === |
− | + | <code>#makechargeusing{display:none;}</code> | |
− | |||
− | |||
+ | === Hide potential issue "Less than 12 months available"=== | ||
+ | <code>.warninglessthan12monthsavailable{ display: none}</code> | ||
− | === | + | === Hide 'Template 2' from Guest Management > Booking Templates === |
+ | <code>.pagetypecommunicationbooktemplate #settingformid .background_boxprop:nth-of-type(2){display:none;}</code> | ||
− | + | =NEW CONTROL PANEL= | |
+ | ==Navigation== | ||
+ | ===Hide SUPPORT button=== | ||
+ | <code>.navbar-top .btngroupdropdown{display: none}</code> | ||
− | + | ===Hide page help icon on the right=== | |
+ | <code>.opener-right{display: none}</code> |
Revision as of 13:35, 20 October 2020
This page gives custom CSS examples which can be used to customize the booking page or the control panel.
Contents
- 1 PROPERTY BOOKING PAGE
- 1.1 Bigger room name
- 1.2 Disable clicks on calendar selector
- 1.3 Mark dates when check-out is not allowed (i.e. for rentals on a weekly basis)
- 1.4 Background Image
- 1.5 Shadow around your Booking Page (Adaptive Booking Page only)
- 1.6 Booking Page with rounded corners (Adaptive Booking Page only)
- 1.7 Hide cents
- 1.8 Show prices with cents even if cents are zero
- 1.9 Mark certain fields in the calendar selector
- 1.10 Add a border around the selected dates
- 1.11 Line through unavailable dates
- 1.12 Mark past dates with a different background and text colour
- 1.13 Change width of hover image (Adaptive Booking Page only)
- 1.14 Remove the hover effect on pictures (Adaptive Booking Page only)
- 1.15 Add a label above the room selector for multiple room bookings (Responsive Booking Page only)
- 1.16 Hide up button (Responsive Booking Page only)
- 1.17 Add icons to descriptive texts (Responsive Booking Page only)
- 1.18 Hide icons (Responsive Booking Page only)
- 1.19 Change text color of language selector and currency selector (Responsive Booking Page only)
- 1.20 Make language selector and currency selector a button (Responsive Booking Page only)
- 1.21 Hide currencies from the currency selector (Responsive Booking Page only)
- 1.22 Remove 0 from adults or guests selector
- 1.23 Limit quantity selectors for upsell items
- 1.24 Hide Check-in / Check-out selector
- 1.25 Hide number of nights selector
- 1.26 Change height of full-width slider
- 1.27 Hide the offer description on the check-out page
- 1.28 Show number of nights on mobiles
- 1.29 Hide room picture on check-out page
- 1.30 Hide option to collect credit cards from Booking page if you want to use this option only for requests via Email
- 2 MULTI PROPERTY BOOKING PAGE
- 3 INVOICES and PRINT TEMPLATES
- 4 CONTROL PANEL
- 4.1 Calendar
- 4.1.1 Hide "Show" in the CALENDAR
- 4.1.2 Hide "Override row" in the CALENDAR
- 4.1.3 Hide item from dropdown for rooms in the CALENDAR
- 4.1.4 Hide suitcase icon (add booking) from CALENDAR
- 4.1.5 Hide button 'Add Booking' from CALENDAR
- 4.1.6 Display red when inventory is 0
- 4.1.7 Show weekends (Saturday/Sunday) in a different color
- 4.1.8 Show a certain day of the week in red
- 4.1.9 Show today in red
- 4.1.10 Show past dates in a different color
- 4.1.11 Display room name and icons in one line
- 4.1.12 Warning color dates not selling
- 4.2 Dashboard
- 4.2.1 Hide the Dashboard selector (drop-down menu) from DASHBOARD
- 4.2.2 Hide the "Hamburger" menu from DASHBOARD
- 4.2.3 Hide a certain column in the Departures Table on the DASHBOARD
- 4.2.4 Hide the "Add Booking" from mobile DASHBOARD
- 4.2.5 Hide room on Housekeeping Units and Housekeeping Bookings modules=
- 4.3 Hide column on the dashboard tables
- 4.4 Guests Menu
- 4.5 Bookings Menu
- 4.6 Rates Menu
- 4.7 Reports Menu
- 4.8 Settings Menu
- 4.9 Booking Popup
- 4.9.1 Hide 'Open in new Window' link
- 4.9.2 Charges & Payments
- 4.9.3 Functions and Buttons
- 4.9.3.1 Hide the checkout selector
- 4.9.3.2 Hide the 'Delete' button
- 4.9.3.3 Hide the 'Add Booking' button
- 4.9.3.4 Hide the 'Copy as new' button
- 4.9.3.5 Hide the 'Print' button
- 4.9.3.6 Hide the 'Assign Invoice Number' button
- 4.9.3.7 Hide the 'Template' buttons
- 4.9.3.8 Hide the 'Continue anyway' buttons
- 4.9.4 Hide Specific Fields
- 4.10 Reports
- 4.11 Miscellaneous
- 4.1 Calendar
- 5 NEW CONTROL PANEL
PROPERTY BOOKING PAGE
{{#fas:lightbulb}} Custom CSS can be added in {{#fas:cog}} (SETTINGS) BOOKING ENGINE > PROPERTY BOOKING PAGE DEVELOPERS > "Custom CSS"
Bigger room name
.at_roomnametext{font-size: 14px;} /*if you want the text even bigger use a higher number*/
Disable clicks on calendar selector
Disable month back-and-forth toggle
.monthcalendarhead{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)
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;}
Background Image
To use a background image upload it to {{#fas:cog}} (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);}
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;}
Booking Page with rounded corners (Adaptive Booking Page only)
{border-radius:7px; -webkit-border-radius:7px; -moz-border-radius:7px;}
Hide cents
.bookingpagecents {display:none;}
Show prices with cents even if cents are zero
.bookingpagecentshide {display:inline;}
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;}
Add a border around the selected dates
.datestay{border: 1px solid #2f2f2f !important;}
{{#fas:lightbulb}} If you use split dates the CSS is:
.prevdatestay, .datestay{border: 1px solid #2f2f2f !important;}
.datenotavail{text-decoration: line-through;}
Mark past dates with a different background and text colour
.datepast{background-color: #xxxxxx; color: #xxxxxx;}
Change width of hover image (Adaptive Booking Page only)
.ui-tooltip{max-width: 500px;}
Remove the hover effect on pictures (Adaptive Booking Page only)
img{pointer-events: none;}
Add a label above the room selector for multiple room bookings (Responsive Booking Page only)
.roomofferqtyselectlabel{display: block;}
Hide up button (Responsive Booking Page only)
footer .button{display: none;}
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.
{{#fas:exclamation-triangle}} 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 {{#fas:cog}} (SETTINGS) BOOKING ENGINE > PROPERTY BOOKING PAGE > DEVELOPER / {{#fas:cog}} (SETTINGS) BOOKING ENGINE > MULTIBOOKING PAGE > DEVELOPER.
Hide icons (Responsive Booking Page only)
.b24fa{display:none;}
#b24scroller .input-group-addon{display:none;}
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;}
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;}
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;}
Remove 0 from adults or guests selector
#inputnumadult option[value="0"] {display:none !important;}
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;}
Hide Check-in / Check-out selector
.b24-selector-checkin{display:none;}
.b24-selector-checkout{display:none;}
Hide number of nights selector
.b24-selector-numnight{display:none;}
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;}
Hide the offer description on the check-out page
.at_offersummary {display: none;}
Show number of nights on mobiles
.b24-selector-numnight { display: inline-block !important; }
Hide room picture on check-out page
.b24-guest-details-right img {display: none;}
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;}
MULTI PROPERTY BOOKING PAGE
{{#fas:lightbulb}} Custom CSS can be added in {{#fas:cog}} (SETTINGS) > BOOKING PAGE > MULTI BOOKING PAGE > DEVELOPERS > "Custom CSS"
Make search criteria always visible
#collapseAdvancedSearch{height: auto; display:block !important;}
.b24-agencysearchlink{display:none;}
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;}
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;}
INVOICES and PRINT TEMPLATES
Custom CSS can be added in {{#fas:cog}} (SETTINGS) > GUEST MANAGEMENT > STYLING > "Custom CSS"
Center invoice on the screen and set overall font size
body {text-align: center; font-size: 16px;}
Set font size of property name
#invoicepropname{font-size: 24px;}
Set font size of address
#invoiceaddress{font-size: 18px; padding-bottom: 50px;}
Set font size of the invoice table
.confirmationtable{font-size: 16px;}
Change margin
.printbooking2 {margin: 20px;}
TBC
#invoicetable{margin-left:auto; margin-right:auto;}
TBC
#invoiceprinttime{font-size: 12px;}
Hide edit button in the invoice
#iconedit {display: none;}
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
Calendar
Hide "Show" in the CALENDAR
.dashgridshowfilter {display:none;}
Hide "Override row" in the CALENDAR
.dashgrid_rowtype1{display:none;}
Hide item from dropdown for rooms in the CALENDAR
.dashgrid_rowroomname .dropdown ul.dropdown-menu li:nth-child(3) {display:none !important;}
Hide suitcase icon (add booking) from CALENDAR
.icon-suitcase {display:none}
Hide button 'Add Booking' from CALENDAR
.b24btn_AddBooking{display:none}
Display red when inventory is 0
.inv0 .dashgrid_inventory{color:red;}
Show weekends (Saturday/Sunday) in a different color
.weekend2{background-color:red;}
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;}
Show today in red
.todaydate{background-color:red;}
Show past dates in a different color
.pastdate{background-color:grey;}
Display room name and icons in one line
.dashgrid_rowroomname{display:inline;}
.editroomlink{padding-left: 2px;}
Warning color dates not selling
.dashgrid_inventory_nap{background-color: red; color: white;}
Dashboard
.dashcontrol #dashid{display: none !important}
.dashcontrol .dropdown{display: none !important}
Hide a certain column in the Departures Table on the DASHBOARD
.mobiledeparture tr > *:nth-child(X) {display: none;}
Hide the "Add Booking" from mobile DASHBOARD
.mobiledashaddbooking{display:none;}
Hide room on Housekeeping Units and Housekeeping Bookings modules=
.widgettype-units .roomrowclassXXX {display: none;} /* replace XXX with the room ID*/
Hide column on the dashboard tables
Change the child number in brackets to the desired column.
.dashboardtable th:nth-child(9) {display:none;}
.dashboardtable td:nth-child(9) {display:none;}
Align the content of a column right
.bookingtable td:nth-child(8) {text-align: right;}
Guests Menu
Hide a certain row in the "Info" tab on GUESTS
.pagetypeguests .viewguest .table tr:nth-child(x) {display: none; }
Bookings Menu
Hide property name in the BOOKING GRID
.bookgrid_rowpropname{display: none;}
Hide room name in the BOOKING GRID
.bookgrid_rowroomname{display: none;}
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'.
Hide column on the BOOKINGS table
Change the child number in brackets to the desired column.
.bookingtable th:nth-child(12) {display:none;}
.bookingtable td:nth-child(12) {display:none;}
Hide cancelled bookings in the BOOKINGS Table
.bookingtable .cancelbooking {display:none;}
Hide "Export" button
.b24btn_ExportBookings {display:none;}
Rates Menu
Hide column on the rates table
Change the child number in brackets to the desired column.
.ratetable th:nth-child(9) {display:none;}
.ratetable td:nth-child(9) {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;}
Hide a certain field from 'Available Columns'
Example: Hide the 'Email' field
.pagetypereports2 #guestemail {display: none;}
Settings Menu
Hide the "Delete" button for properties
.pagetypeproperties .b24btn_delete{display:none;}
Booking Popup
Hide 'Open in new Window' link
.pagetypeajaxbookedit.openinnewwindow{display:none;}
Charges & Payments
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.
Functions and Buttons
Hide the checkout selector
.pagetypeajaxbookedit #checkout{display:none;}
Hide the 'Delete' button
.pagetypeajaxbookedit .deletebookingbutton{display:none;}
Hide the 'Add Booking' button
.icon-suitcase, .b24btn_AddBooking{display:none;}
Hide the 'Copy as new' button
.pagetypeajaxbookedit #bookingcopyasnewbutton{display:none;}
Hide the 'Print' button
.pagetypeajaxbookedit #bookingprintbutton{display:none;}
Hide the 'Assign Invoice Number' button
.pagetypeajaxbookedit .b24btn_AssignInvoiveNumber{display:none;}
German control panel:
.pagetypeajaxbookedit .b24btn_Rechnungsnummererzeugen{display:none;}
Hide the 'Template' buttons
.pagetypeajaxbookedit #bookingtemplate1button{display:none;}
.pagetypeajaxbookedit #bookingtemplate2button{display:none;}
.pagetypeajaxbookedit #bookingtemplate3button{display:none;}
Hide the 'Continue anyway' buttons
.statusmsg .btn{display: none}
Hide Specific Fields
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;}
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;}
TAB Mail & Actions
.pagetypeajaxbookedit .menusetting-guestemail{display:none;}
Reports
{{#fas:lightbulb}} Custom CSS can be added in {{#fas:cog}} (SETTINGS) > GUEST MANAGEMENT > STYLING > "Custom CSS"
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;}
Miscellaneous
Change the blue Login button on the initial Beds24 page (resellers only)
.pagetypelogin .b24btn_Login{background-color:#xxxxxx;}
Hide the "Make a Charge using Stripe" button
#makechargeusing{display:none;}
Hide potential issue "Less than 12 months available"
.warninglessthan12monthsavailable{ display: none}
Hide 'Template 2' from Guest Management > Booking Templates
.pagetypecommunicationbooktemplate #settingformid .background_boxprop:nth-of-type(2){display:none;}
NEW CONTROL PANEL
Hide SUPPORT button
.navbar-top .btngroupdropdown{display: none}
Hide page help icon on the right
.opener-right{display: none}