Custom CSS: Difference between revisions

Jump to navigation Jump to search
Andrian (talk | contribs)
No edit summary
Andrian (talk | contribs)
No edit summary
Line 92: Line 92:
  .datenotavail{text-decoration: line-through;}
  .datenotavail{text-decoration: line-through;}


=== Change width of hover image (adaptive booking page only)===
=== Change width of hover image (Adaptive Booking Page only)===
  .ui-tooltip{max-width: 500px;}
  .ui-tooltip{max-width: 500px;}


=== Remove the hover effect on pictures (adaptive booking page only)===
=== Remove the hover effect on pictures (Adaptive Booking Page only)===
  img{pointer-events: none;}
  img{pointer-events: none;}


=== 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)===
  .roomofferqtyselectlabel{display: block;}
  .roomofferqtyselectlabel{display: block;}


Line 104: Line 104:
  footer .button{display: none;}
  footer .button{display: none;}


=== Add icons to descriptive texts (responsive booking page only)===
=== Add icons to descriptive texts (Responsive Booking Page only)===
[https://getbootstrap.com/docs/3.3/components/#glyphicons Bootstrap glyphicons] and [http://fontawesome.io/icons/ Font Awesome icons] can be added to the descriptive fields. To add icons the editor needs to be set to "Source"
[https://getbootstrap.com/docs/3.3/components/#glyphicons Bootstrap glyphicons] and [http://fontawesome.io/icons/ Font Awesome icons] can be added to the descriptive fields. To add icons the editor needs to be set to "Source"


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


=== Hide icons (responsive booking page only)===
=== Hide icons (Responsive Booking Page only)===
  .b24fa{
  .b24fa{
  display: none;  
  display: none;  
Line 128: Line 128:
  }
  }


=== 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)===
  #topofthebookingpage{color: #ffffff;}
  #topofthebookingpage{color: #ffffff;}


=== Make language selector and currency selector a button (responsive booking page only)===
=== 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;}
  .b24languagedropdown .btn, .b24languagedropdown .btn.active, .b24languagedropdown .btn:active, .b24currencydropdown .btn, .b24currencydropdown .btn.active, .b24currencydropdown.btn:active {background:white; padding:10px;}
<br>
<br>