Operations | October 2, 2012 | 1 min read
A Few CSS Tweaks
We’ve added a couple of new tweaks for hiding the number of children in the reservation forms. By adding these lines to a custom theme, the number of children can be hidden. Hide the number of children dropdown:.numchildren { display:none; } Hide the number of children in the reservation summary, on the Reservation Page:#numguests_children_span {display:none;} …
We’ve added a couple of new tweaks for hiding the number of children in the reservation forms.
By adding these lines to a custom theme, the number of children can be hidden.
Hide the number of children dropdown: .numchildren { display:none; }

Hide the number of children in the reservation summary, on the Reservation Page: #numguests_children_span {display:none;}

Hide the number of children in the final confirmation page: #ledger_numchildren {display:none;}

And, one other tweak, in case you don’t want to display number of nights in the final confirmation page, it can be hidden like this: #ledger_numnights {display:none;}
