Category:Developers: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 60: | Line 60: | ||
=== Show prices with cents even if cents are zero === | === Show prices with cents even if cents are zero === | ||
.bookingpagecentshide {display:inline;} | .bookingpagecentshide {display:inline;} | ||
=== Mark certain days of the week === | |||
Example 1: Change the background color for Saturday | |||
.daysat {background-color:#ccc !important;} | |||
Example 2: Add a border arround Saturday | |||
.daysat {border:1px solid #999999 !important;} | |||
exchange daysat by daysun, daymon, daytue, dayewed, daythu, dayfri to exchange the backgound color for other days. | |||