Customise Booking Page: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 31: | Line 31: | ||
Webdesigners use custom CSS to sefine the look and formatting of a website. Here a list of common adjustmens which can be done pasting the code provided below into SETTINGS -> BOOKING PAGE -> ADVANCED -> WEBDESIGNERS | Webdesigners use custom CSS to sefine the look and formatting of a website. Here a list of common adjustmens which can be done pasting the code provided below into SETTINGS -> BOOKING PAGE -> ADVANCED -> WEBDESIGNERS | ||
== Shadow | == Shadow Arround your Booking Page == | ||
/*code for a shadow arround your booking page*/ | /*code for a shadow arround your booking page*/ | ||
| Line 56: | Line 56: | ||
body { | body { | ||
background-image:url(https://www.beds24.com/pic/p0000/2049/04.jpg); | background-image:url(https://www.beds24.com/pic/p0000/2049/04.jpg); | ||
} | |||
== Booking Page with Rounded Corners == | |||
/*code for rounded corners*/ | |||
<nowiki>#</nowiki>bookingpage { | |||
border-radius: 7px; | |||
-webkit-border-radius: 7px; | |||
-moz-border-radius: 7px; | |||
} | |||
== Bigger Room Name == | |||
/*code for bigger room name*/ | |||
.at_roomnametext{ | |||
font-size: 14px /*if you want the text even bigger use a higher number*/ | |||
} | } | ||