Custom CSS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 176: | Line 176: | ||
*SUB ACCOUNTS > ACCOUNT LIST > MANAGE ACCOUNT | *SUB ACCOUNTS > ACCOUNT LIST > MANAGE ACCOUNT | ||
===Change the blue Login button on the initial Beds24 page=== | ===Change the blue Login button on the initial Beds24 page (resellers only=== | ||
.pagetypelogin .b24btn_Login{background-color:#xxxxxx;} | .pagetypelogin .b24btn_Login{background-color:#xxxxxx;} | ||
===Hide the "Delete" button in the booking menu=== | ===Hide the "Delete" button in the booking menu=== | ||
.pagetypeajaxbookedit .deletebookingbutton{display:none;} | .pagetypeajaxbookedit .deletebookingbutton{display:none;} | ||
===Hide the "Add Booking" button in the booking menu=== | ===Hide the "Add Booking" button in the booking menu=== | ||
.icon-suitcase, .b24btn_AddBooking{display:none;} | |||
===Hide "Show" in the CALENDAR=== | |||
.dashgridshowfilter {display:none;} | |||
== Hide the "Make a Charge using Stripe" button == | |||
.makechargeusingl{display: none} | |||
== Hide elements from the BOOKINGS pop up == | |||
Guest titel | |||
.pagetypeajaxbookedit .menusetting-guesttitle{ display: none } | |||
Last Name | |||
.pagetypeajaxbookedit .menusetting-guestname{ 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 } | |||
== Hide a certain colum in the BOOKINGS Table == | |||
.pagetypebookings .bookingtable tr > *:nth-child(X) {display: none;} | |||
== Hide a certain colum in the RATES Table == | |||
.pagetyperates .bookingtable tr> *:nth-child(X) {display: none;} | |||
== Hide property name in the BOOKINGS GRID == | |||
.bookgrid_rowpropname{display: none;} | |||